Last active
October 5, 2016 09:14
-
-
Save bogdandynamic/aeab539f31a8914275a3b1d2c003bf2f to your computer and use it in GitHub Desktop.
Linux commands: Move all files in subfolders to parent folder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . -mindepth 2 -type f -print -exec mv {} . \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment