Answers for "bash read array"

3

bash display items in array

$ printf '%s\n' "${my_array[@]}"
Posted by: Guest on January-28-2020
1

access array elements bash script

#In case you want to access an element just use an index
$array[0]
$array[1]
.....
Posted by: Guest on March-15-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language