Update shell_cheatsheet.md
authorLynne Williams <williams.lynne99@gmail.com>
Sun, 17 Feb 2013 17:06:39 +0000 (12:06 -0500)
committerW. Trevor King <wking@tremily.us>
Wed, 23 Oct 2013 22:27:29 +0000 (15:27 -0700)
shell_cheatsheet.md

index 95b7bf351ca4c24f4034137cea01a1185f218928..c700356d2c566ea59a5234b906d55d9abd34e7a3 100644 (file)
@@ -169,13 +169,14 @@ continues the loop as long as the value in the variable COUNTER is less than 10
 | Example command | Description |
 |-----------------|-------------|
 | `grep [options] day haiku.txt` | finds every instance of the string `day` in the file haiku.txt and pipes it to standard output |  
-| *  `-E`                  | tells grep you will be using a regular expression. Enclose the regular expression in quotes. _Note:_ the power of `grep` comes from using regular expressions. Please see the regular expressions sheet for examples |  
 
-
-       * **`-i`** --> makes matching case-insensitive
-       * **`-n`** --> limits the number of lines that match to the first n matches
-       * **`-v`** --> shows lines that do not match the pattern (inverts the match)                    
-       * **`-w`** --> outputs instances where the pattern is a whole word
+| grep options |  |
+|--------------|--|
+| `-E` | tells grep you will be using a regular expression. Enclose the regular expression in quotes. _Note:_ the power of `grep` comes from using regular expressions. Please see the regular expressions sheet for examples |  
+| `-i` | makes matching case-insensitive |  
+| `-n` | limits the number of lines that match to the first n matches |  
+| `-v` | shows lines that do not match the pattern (inverts the match) |  
+| `-w` | outputs instances where the pattern is a whole word |
 
 ### b) How to find files with certain properties...
 * **`find . -type d` -->