How Can I Flatten A Directory Structure In Mac OS X?
- 0
- Add a Comment
Dave, how can I flatten a directory structure? I’ve got a directory “foo” with many more sub-directories and files within. I want to take all the files from all levels beneath foo and put them in foo itself.
I’ve tried this: find . *.mp3 -print0 | xargs -0 mv . but I get an error […]
