Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save p53ud0k0d3/c4b30f1c69ce1801e696 to your computer and use it in GitHub Desktop.
Save p53ud0k0d3/c4b30f1c69ce1801e696 to your computer and use it in GitHub Desktop.
Display an element of an array
i=0
while read x
do
arr[i]=$x
i=$i+1
done
echo ${arr[3]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment