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

index c40cd6a4c740fbeb17ab25b132307768c1a8b324..1ae497420cb36b60be5200094175b58e59966ea4 100644 (file)
@@ -78,12 +78,13 @@ A special kind of redirection is called a pipe and is denoted by `|`.
 |---------|-------------------------------------------------------------------------------------------------------------------------------------------------------|  
 | `|`     | Output from one command line program can be used as input to another one (e.g. `ls *.md | head` gives you the first 5 `*.md` files in your directory) |  
 
+
 *  Combining single-purpose filters with pipes is the most productive way to use the shell...
    *   a program conforms that to Unix conventions, it can easily be combined with others...
 
 Example:   
 
-    ls *.md | head | sed -i \`s/markdown/software/g\`
+    ls *.md | head | sed -i `s/markdown/software/g`
    
 changes all the instances of the word `markdown` to `software` in the first 5 `*.md` files in your current directory.