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

index 65cb98811c889a627f73a7139c04766a90b19a08..df2185534ff8ffa091b6d4f7d4ce64204107d9b9 100644 (file)
@@ -59,8 +59,20 @@ text strings as arguments.
 
 See the cheatsheet on regular expressions for more "wildcard" shortcuts.
 
-### c) How to redirect a command's output to a file...
-### d) How to redirect a command's input from a file...
+### b) How to redirect to a file and get input from a file ...
+
+#### Definitions:
+*  **stdout**:
+*  **stdin**:
+*  **stderr**:
+
+| Command | Description |  
+|---------|-------------|
+| `>`     |
+| `>>`    |
+| `<`     |
+| `<<`    |
+
 ### e) How to use the output of one command as the input to another with a pipe...
 ### f) That combining single-purpose filters with pipes is the most productive way to use the shell...
 ### g) That if a program conforms to Unix conventions, it can easily be combined with others...