Update shell_cheatsheet.md
[swc-modular-shell.git] / shell_cheatsheet.md
index 97e0b4d8370462b199ac1d24c1a1d78565a840db..3c4411c1a562e611febf6218461895d94acc5300 100644 (file)
@@ -67,12 +67,9 @@ Redirection operators can be used to redirect the ouput from a program from the
 |---------|---------------------------------------------------------------------------------------------------------------------------------|  
 | `>`     | write `stdout` to a new file; overwrites any file with that name (e.g., `ls *.md > mardkownfiles.txt`)                          |  
 | `>>`    | append `stdout` to a previously existing file; if the file does not exist, it is created (e.g., `ls *.md >> markdownfiles.txt`) |  
-| `<`     |  
-| `<<`    | |  
+| `<`     | assigns the information in a file to a variable, loop, etc (e.g., `n < markdownfiles.md`)                                       | 
+
 
-#### Glossary:
-*  **stdout**:
-*  **stdin**:
 
 ### 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...