Copying multiple files from multiple directories to one folder

This is assuming you’re in the music directory – if not, you want

Command#
find /path/to/music -iname '*.mp3' -type f -exec cp {} target_dir/ \;

Comments are closed.