Skip to content

Instantly share code, notes, and snippets.

@austinkettner
Last active February 27, 2018 03:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save austinkettner/ca3e4fd45bbc5661a2a250cfddf7afd0 to your computer and use it in GitHub Desktop.
Save austinkettner/ca3e4fd45bbc5661a2a250cfddf7afd0 to your computer and use it in GitHub Desktop.
Combine All Files in Folders to one folder
# Combine All Files in Folders to one folder**
find . -type f -print0 | xargs -0 -I file mv file .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment