projects
/
swc-workshop.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7d44c3c
)
Update shell_cheatsheet.md
author
Lynne Williams
<williams.lynne99@gmail.com>
Sun, 17 Feb 2013 16:24:37 +0000
(11:24 -0500)
committer
W. Trevor King
<wking@tremily.us>
Wed, 23 Oct 2013 22:27:29 +0000
(15:27 -0700)
shell_cheatsheet.md
patch
|
blob
|
history
diff --git
a/shell_cheatsheet.md
b/shell_cheatsheet.md
index 2382737cb8e9f740774897e94d2bc65907700e98..c40cd6a4c740fbeb17ab25b132307768c1a8b324 100644
(file)
--- 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.