]> git.scottworley.com Git - picsort/commitdiff
Don't re-download or re-rename-to-date seen files
authorScott Worley <scottworley@scottworley.com>
Thu, 24 Apr 2014 06:23:00 +0000 (23:23 -0700)
committerScott Worley <scottworley@scottworley.com>
Thu, 24 Apr 2014 06:23:00 +0000 (23:23 -0700)
Allow files in . to be moved away and not just put back in the next
slurp-pics run.

slurp-pics

index 77d3314087d824cb10b074984e5ae182755519e5..9602c3f4b7b20d54d6f81c174edc386d752d74b1 100755 (executable)
@@ -2,14 +2,15 @@
 
 while read host path;do
   outdir="slurp-$host"
+  seendir="slurp-seen"
   {
-    mkdir -p "$outdir"
+    mkdir -p "$outdir" "$seendir/$outdir"
     echo "cd $path"
     sftp -v -P 19362 -i .slurp-key "slurp@$host" <<< "cd $path"$'\n'"ls -1" |
       sed 1,2d |
       while read filename;do
         output_filename="$outdir/${filename/jpg/jpeg}"
-        if [[ -e "$output_filename" ]];then
+        if [[ -e "$output_filename" || -e "$seendir/$output_filename" ]];then
           echo "skipping $filename" >&2
         else
           echo "getting $filename" >&2
@@ -17,5 +18,8 @@ while read host path;do
         fi
       done
    } | sftp -v -P 19362 -i .slurp-key "slurp@$host"
-   rename-to-date -l "$outdir"/*
+   for f in "$outdir"/*;do
+     touch "$seendir/$f"
+   done
+   rename-to-date "$outdir"/*
 done < .slurp-hosts