Flatten folder/directory tree
Posted by Kelvin on 16 Jan 2011 at 10:50 pm | Tagged as: Ubuntu
For example, to move all mp3 files in sub directories into the current dir:
find . -name *.mp3 -exec mv {} . \;
Posted by Kelvin on 16 Jan 2011 at 10:50 pm | Tagged as: Ubuntu
For example, to move all mp3 files in sub directories into the current dir:
find . -name *.mp3 -exec mv {} . \;