Awesome Bash arrays ================================================================================ Just some examples of how to do things with Bash arrays, and their analogous examples in Javascript. Defining arrays Javascript var array = ["one","two","three","four","five"] Bash array=("one" "two" "three" "four" "five") Looping through an array Javascript for (var i=0; i