Using OpenSuse V13.2
I’m trying to copy all the mp3s, under a directory, onto a thumbdrive, and replicating the directory structure on the thumbdrive, by using the following command
rsync --recursive --checksum --verbose --progress --stats --log-file=/home/john/Eight_Copy_Log.txt /home/john/___John/All/*.mp3 /var/run/media/john/F009-64A5
rsync doesn’t recurse into the subdirectories when *.mp3 is present.
Without the *.mp3, everything gets copied.
I’ve tried many permutations with include file, exclude file with no luck.
I must be overlooking something.
Thank you.