From: Lynne Williams Date: Sun, 17 Feb 2013 16:24:37 +0000 (-0500) Subject: Update shell_cheatsheet.md X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b358327cf71023f2eada08ca703d14def4200a77;p=swc-workshop.git Update shell_cheatsheet.md --- diff --git a/shell_cheatsheet.md b/shell_cheatsheet.md index 2382737..c40cd6a 100644 --- a/shell_cheatsheet.md +++ b/shell_cheatsheet.md @@ -83,7 +83,7 @@ A special kind of redirection is called a pipe and is denoted by `|`. 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.