Skip to content

Instantly share code, notes, and snippets.

@rkcb
Created December 6, 2018 13:39
Show Gist options
  • Select an option

  • Save rkcb/e0aa790839758ce9cf22886736d58061 to your computer and use it in GitHub Desktop.

Select an option

Save rkcb/e0aa790839758ce9cf22886736d58061 to your computer and use it in GitHub Desktop.
My Bash adventures
# 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