diff options
Diffstat (limited to 'scuttler')
-rwxr-xr-x | scuttler | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -21,6 +21,9 @@ dbpass=`httracker_scuttle_config dbpass` dbname=`httracker_scuttle_config dbname` dbhost=`httracker_scuttle_config dbhost` +# So we can run both applications in parallel +URLS="$URLS_SCUTTLER" + # Get URLs from database URLS=`mktemp -p ${TMP}` chown links.links ${URLS} @@ -34,4 +37,4 @@ httracker_sqlquery "select bAddress from sc_bookmarks;" > ${URLS} httracker_iterate # Cleanup -rm -rf $TMP +rm -rf $URLS |