From: Lynne Williams Date: Sun, 17 Feb 2013 17:32:23 +0000 (-0500) Subject: Update shell_cheatsheet.md X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8fac0cefb658a0bf5d259b6d923c0a605f1c57c6;p=swc-workshop.git Update shell_cheatsheet.md --- diff --git a/shell_cheatsheet.md b/shell_cheatsheet.md index 497247d..04d0ed2 100644 --- a/shell_cheatsheet.md +++ b/shell_cheatsheet.md @@ -77,7 +77,7 @@ A special kind of redirection is called a pipe and is denoted by `|`. | Command | Description | |---------|-------------------------------------------------------------------------------------------------------------------------------------------------------| -| `\|` | 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) | +| `|` | 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) |