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

index d88499fceb73eeba3e8e42c79033273fb1aa6c62..cc4d8d11959c7b6bed4ee61b86ad49dd0d86b3a1 100644 (file)
@@ -2,13 +2,14 @@
 ***
 
 ## 1. Shell Basics:
-* **`.`** (a single period) --> refers to the current directory
-* **`..`** (a double period) --> refers to the directory above the current directory
-* **`~`** --> refers to your home directory. _Note:_ this command does NOT work on Windows machines (Mac and Linux are okay)
-* **`*`** --> wildcard (multiple characters). `*.txt` will match all files in the current directory that end with `.txt`
-* **`?`** --> wildcard (single character). `?.txt` will match `a.txt` and `b.txt`, but not `ab.txt`
-* **`cd ./dirname`** --> changes the current directory to the directory `dirname` 
-* **`ls -F`** --> tells you what files and directories are in the current directory
+
+| Symbol         | Definition                                                                                                     |
+|----------------|----------------------------------------------------------------------------------------------------------------|  
+| `.`            | a single period refers to the current directory                                                                |  
+| `..`           | a double period refers to the directory immediately above the current directory                                |  
+| `~`            | refers to your home directory. _Note:_ this command does NOT work on Windows machines (Mac and Linux are okay) |  
+| `cd ./dirname` | changes the current directory to the directory `dirname`                                                       |  
+| `ls -F`        | tells you what files and directories are in the current directory                                              |