Displaying 1 result from an estimated 1 matches for "02e0b07c".
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