One of the most convenient ways to manipulate information in scripts is to store it in an array. Arrays facilitate looping through lists of related values, keeping track of an ever changing number of ...
echo $MY_FIRST_LIST # The name of array will show the first element of array (as array name is pointer to its first element) echo ${MY_FIRST_LIST[1]} # Here we're ...