help required for passing parameters to rsync within a script
I'm attempting to write a short script to copy all 'CONC*' files in any
subdir under ./ using rsync and filters but I can't get the correct
quoting/escaping... any ideas?
but I can't see how to sort FILTER in this bash script such that + and
*/ all work properly... ta, Michael
# cmd - need newer than system rsync
RSYNC_EXE=${HOME}/src/rsync-2.6.9__icc/rsync
RSYNC_CMDS='--times --links -z --progress --stats -v --dry-run -rP'
# source top-level
SRC=. # from here down
# dest (remote)
DEST=michael@ratty.phy.umist.ac.uk:/data_hdd1/michael/`basename $PWD` #
ensure in same dir on remote
# filter: all subdirs but only CONC* files
FILTER="--filter=+ * --filter=+ CONC* --filter=- *"
echo $FILTER
set -x
${RSYNC_EXE} ${RSYNC_CMDS} ${FILTER} ${SRC} ${DEST}
--
To UNSUBSCRIBE, email to debian-user-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org