Skip to content

Instantly share code, notes, and snippets.

@navinpai
Created August 14, 2011 22:44
Show Gist options
  • Select an option

  • Save navinpai/1145409 to your computer and use it in GitHub Desktop.

Select an option

Save navinpai/1145409 to your computer and use it in GitHub Desktop.
Terminal Tricks
//Search all files in current folder for a text string and return filenames
find . -type f -exec grep -l "text to look for" {} \;
//Turn off Monitor
xset dpms force off
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment