I have a folder say /media/Movies/English/ numbers of folders, there is say 500 folder
Now I want to copy only 50 folders, not in alphabetical order but in random ...
How to do perform this task using rsync?
I tried the following rsync command
this is want happened rsync -arv --include-from=/media/Movies_NTFS/Movies/English/rsync-test /home/joe/Videos/
rsync-test file contains per line folders present in /media/Movies_NTFS/Movies/English/ folder but nothing is copied, when I ran the command. why?

rsync -arv --include-from=rsync-test /media/Movies/English /home/joe/Videos, i.e. you are missing the source argument. – taneli Mar 19 '12 at 19:22unsortfor shuffling the folders (and use the-roption to make it even more random). – taneli Mar 20 '12 at 10:21