Author: Dan
Date: 03-03-10 17:33
Say you have a bunch of MP3 files, all in different folders, under a common directory. This moves them all to the same directory. That is, instead of a tree structure with folders, you now have all the files in one folder.
find /Users/Tree/Of/ALLMP3 -print0 -type f -exec mv {} /Users/Desktop/JustFiles \;
This will work with file names containing spaces.
Thank you.
--
Webmaster
|
|