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

index 04813cdc18cdda762833c4d80be06620af1ddf68..ea960c508b1e528db8c3ddf4a3b4828c53b3b9a1 100644 (file)
@@ -82,7 +82,7 @@ A special kind of redirection is called a pipe and is denoted by `|`.
 
 
 
-Example:   
+##### Example:   
 
     ls *.md | head | sed -i `s/markdown/software/g`
    
@@ -115,9 +115,18 @@ NEED TO DO VARIABLE ASSIGNMENT FIRST!!!!
 where,
 
 *  `for`, `in`, `do`, and `done` are keywords
-*  `list` contains a list of values separated by spaces. e.g.,
-    list= 1 2 3 4 5 6 
-    list= Bob Mary Sue Greg
+*  `list` contains a list of values separated by spaces. e.g. `list` can be replaced by `1 2 3 4 5 6` or by `Bob Mary Sue Greg`. `list` can also be a variable:
+
+    list[0]=Sam
+    list[1]=Lynne
+    list[2]=Dhavide
+    list[3]=Trevor
+    .
+    .
+    .
+    list[n]=Mark
+    
     
 *