Created
December 6, 2018 13:39
-
-
Save rkcb/e0aa790839758ce9cf22886736d58061 to your computer and use it in GitHub Desktop.
My Bash adventures
This file contains hidden or 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
| # Copy all regular files in the current directory (including subdirectories) | |
| # to the given directory | |
| for x in `find -type f` ; do `cp $x /home/escobar/Pictures`; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment