Displaying 1 result from an estimated 1 matches for "ncauv".
2008 Mar 07
4
rsync
I've gone over and over the man page and I don't get it and it's
obviously a simple task
I want to rsync a directory but only the pdf files...
rsync -ncauv --include=*.pdf $WORKING $WEB_SERVER
# sync's everything, I want to exclude stuff
rsync -ncauv --filter='+ *.pdf' --filter='+ *.odt *.ott *.eps' \
$WORKING $WEB_SERVER
# sync's everything...does not seem to exclude anything
rsync -ncauv --filter='. /root/scripts/qm_man...