#!/bin/csh -f #scp $*:q rsync -v --progress -i -l --rsh=ssh $*:q # -vv = Show names of skipped files. -v or default would show only copied files # Also echo line like: # opening connection using ssh -l fred bristle.com rsync --server -vvu # . /var/www/html/Pictures/Stluka/Chris/Funeral # --progress = Seems to have no effect. Implied by -vv? # -i = Seems to have no effect. Implied by -vv? # -l = Copy symlinks also (as symlinks) # -t = Preserve times (decided not by default) # --rsh=ssh = Use ssh for copy (default?) # --del = Delete files from destination if missing from source