Skip to content

Instantly share code, notes, and snippets.

@LouisRitchie
Created August 31, 2018 17:51
Show Gist options
  • Save LouisRitchie/9177aa86e52c5534d00055643d839ec8 to your computer and use it in GitHub Desktop.
Save LouisRitchie/9177aa86e52c5534d00055643d839ec8 to your computer and use it in GitHub Desktop.
Useful Bash Snippets
" search and replace over all files in directory & subdirectories
find ./ -type f -exec sed -i -e 's/apple/orange/g' {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment