/usr/share/doc/rsync/support
NameSizeModeActions
atomic-rsync51900644editdlrm
cvs2includes12160644editdlrm
deny-rsync10050644editdlrm
file-attr-restore49360644editdlrm
files-to-excludes5380644editdlrm
git-set-file-times39020644editdlrm
instant-rsyncd27910644editdlrm
logfilter11040644editdlrm
lsh31020644editdlrm
lsh.sh11080644editdlrm
Makefile800644editdlrm
mapfrom6330644editdlrm
mapto6250644editdlrm
mnt-excl18480644editdlrm
munge-symlinks26170644editdlrm
nameconvert15270644editdlrm
rrsync126170644editdlrm
rrsync.1.md43830644editdlrm
rsync-no-vanished5930644editdlrm
rsync-slash-strip7690644editdlrm
rsyncstats86910644editdlrm
savetransfer.c45600644editdlrm
Edit: /usr/share/doc/rsync/support/rsync-slash-strip (769B)
#!/usr/bin/env bash # This script can be used as an rsync command-line filter that strips a single # trailing slash from each arg. That treats "src/" the same as "src", thus # you need to use "src/." or "src//" for just the contents of the "src" dir. # (Note that command-line dir-excludes would need to use "excl//" too.) # # To use this, name it something like "rs", put it somewhere in your path, and # then use "rs" in place of "rsync" when you are typing your copy commands. REAL_RSYNC=/usr/bin/rsync args=() for arg in "${@}"; do if [[ "$arg" == --server ]]; then exec $REAL_RSYNC "${@}" exit $? # Not reached fi if [[ "$arg" == / ]]; then args=("${args[@]}" /) else args=("${args[@]}" "${arg%/}") fi done exec $REAL_RSYNC "${args[@]}"