Skip to content

Instantly share code, notes, and snippets.

@ptasker
Created June 27, 2012 20:17
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 ptasker/3006592 to your computer and use it in GitHub Desktop.
Save ptasker/3006592 to your computer and use it in GitHub Desktop.
Useful Linux Commands
# Find text in files recursively and only display the file name
grep -H -r "search term" /filepath | cut -d: -f1
# Search in file for term and color them in result
egrep -iw --color=auto 'user|group' /etc/httpd/conf/http
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment