5 lines
59 B
Plaintext
5 lines
59 B
Plaintext
|
for ${1:i} in ${!${2:Array}[@]}
|
||
|
do
|
||
|
echo "${$2[$1]}"
|
||
|
done
|