Skip to content

Instantly share code, notes, and snippets.

@Maher4Ever
Created July 17, 2011 21:35
Show Gist options
  • Save Maher4Ever/1088092 to your computer and use it in GitHub Desktop.
Save Maher4Ever/1088092 to your computer and use it in GitHub Desktop.
Copy files only without dir structure to another dir in shell (bash too)
find ##Source## -type f -print0 | xargs -0 -I {} cp {} ##Destination##
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment