Hello List! I want to rsync a few homedirectories which also contain big *.tar or *.bin files. Does rsync have a option where it will NOT transfer files which are bigger than X MB/GB. I did have a look in man rsync, but could not really find what i am lookig for. If rsync does not have that feature, is there a workaround? Cheers, Mario -- GMX Weihnachts-Special: Seychellen-Traumreise zu gewinnen! Rentier entlaufen. Finden Sie Rudolph! Als Belohnung winken tolle Preise. gmx.net/de/cgi/specialmail +++ GMX - die erste Adresse für Mail, Message, More! +++
Hi, On Mon, Nov 24, 2003 at 02:18:13PM +0100, Mario Ohnewald wrote:> I want to rsync a few homedirectories which also contain big > *.tar or *.bin files. > Does rsync have a option where it will NOT transfer files which > are bigger than X MB/GB.How about something like this: find [src] -size +1000k | rsync [opts...] --exclude-from=- [src] [dst] Regards, Michael