/ Published in: Bash
Useful for when you want to move all mp3 files in sub directories into the current dir
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
find . -name *.mp3 -exec mv {} . \;
URL: http://www.supermind.org/blog/875/flatten-folderdirectory-tree