]> git.scottworley.com Git - picsort/blobdiff - slurp-pics
Use the local rename-to-date
[picsort] / slurp-pics
index 68a2b126e69e9e24f5d671fc745863f1c0c8650c..c8a92f0b2ec695a18895f62d4e4e2dba17373de1 100755 (executable)
@@ -1,12 +1,15 @@
-#!/bin/bash
+#!/usr/bin/env bash
 
+LEGACY='-oHostKeyAlgorithms=+ssh-dss'
+sftp=( sftp -v -P 19362 -i .slurp-key -oConnectTimeout=4 $LEGACY )
+
+seendir="slurp-seen"
 while read host path;do
-  outdir="slurp-$host"
-  seendir="slurp-seen"
+  outdir="slurp-$host-${path//\//,}"
   {
     mkdir -p "$outdir" "$seendir/$outdir"
     echo "cd $path"
-    sftp -v -P 19362 -i .slurp-key -oConnectTimeout=4 "slurp@$host" <<< "cd $path"$'\n'"ls -1" |
+    "${sftp[@]}" "slurp@$host" <<< "cd $path"$'\n'"ls -1" |
       sed 1,2d |
       while read filename;do
         output_filename="$outdir/${filename/jpg/jpeg}"
@@ -17,9 +20,9 @@ while read host path;do
           echo "get -p $filename $output_filename"
         fi
       done
-   } | sftp -v -P 19362 -i .slurp-key "slurp@$host"
+   } | "${sftp[@]}" "slurp@$host"
    for f in "$outdir"/*;do
      touch "$seendir/$f"
    done
-   rename-to-date "$outdir"/*
+   ./rename-to-date "$outdir"/*
 done < .slurp-hosts