Skip to content

Commit

Permalink
Update keypoints after move of wildcards from ep 4 to 3
Browse files Browse the repository at this point in the history
See #699 and #812
  • Loading branch information
OKaluza committed Aug 8, 2018
1 parent 03e2968 commit 058b0a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 2 additions & 0 deletions _episodes/03-create.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ keypoints:
- "`mkdir path` creates a new directory."
- "`mv old new` moves (renames) a file or directory."
- "`rm path` removes (deletes) a file."
- "`*` matches zero or more characters in a filename, so `*.txt` matches all files ending in `.txt`."
- "`?` matches any single character in a filename, so `?.txt` matches `a.txt` but not `any.txt`."
- "Use of the Control key may be described in many ways, including `Ctrl-X`, `Control-X`, and `^X`."
- "The shell does not have a trash bin: once something is deleted, it's really gone."
- "Depending on the type of work you do, you may need a more powerful text editor than Nano."
Expand Down
2 changes: 0 additions & 2 deletions _episodes/04-pipefilter.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ keypoints:
- "`tail` displays the last 10 lines of its input."
- "`sort` sorts its inputs."
- "`wc` counts lines, words, and characters in its inputs."
- "`*` matches zero or more characters in a filename, so `*.txt` matches all files ending in `.txt`."
- "`?` matches any single character in a filename, so `?.txt` matches `a.txt` but not `any.txt`."
- "`command > file` redirects a command's output to a file."
- "`first | second` is a pipeline: the output of the first command is used as the input to the second."
- "The best way to use the shell is to use pipes to combine simple single-purpose programs (filters)."
Expand Down

0 comments on commit 058b0a2

Please sign in to comment.