Created
November 19, 2009 02:54
-
-
Save stith/238511 to your computer and use it in GitHub Desktop.
Random command line snippets
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
| grep -lir "some text" * | |
| // -l outputs only names of files containing text instead of the line | |
| // -i ignores case | |
| // -r recursive, go into subdirectories |
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
| sudo !! | |
| // Prepends sudo to last command. Very handy for when | |
| // you forget sudo in front of a long command. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment