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 <mailinglists-after-041101_reply-not-possible@hpc.dk>
On 8/13/05, Henning Wangerin <mailinglists-after-041101_reply-not-possible@hpc.dk> 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 <mailinglists-after-041101_reply-not-possible@hpc.dk> > --You can use rsync in combination with the find command. ie find . -type f -size -20480 | rsync -a . user@server:/path/. --files-from=- The find command could be simplified depending on the version you use. -- Aaron W Morris (decep) <aaronwmorris@gmail.com>