On 8/13/05, Henning Wangerin <[EMAIL PROTECTED]> wrote: > Hi! > > Is there a possibiliy to tell rsync only to copy files less than eg 10Mb > of size? > > I'm running a dedicated backup-server, and would like to skip backing up > my downloaded iso-files. > They can bee downloaded again if requeired ;-) > > -- > Henning Wangerin <[EMAIL PROTECTED]> > --
You can use rsync in combination with the find command. ie find . -type f -size -20480 | rsync -a . [EMAIL PROTECTED]:/path/. --files-from=- The find command could be simplified depending on the version you use. -- Aaron W Morris (decep) <[EMAIL PROTECTED]> -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html