Is there any possibility to get value from BASH array using index defined in AWK?
Bash:
table=(a b c d e)
instructions | awk " BEGIN {index=0} {print \"${table[**index**]}\"; index++} "
Is there any possibility to get value from BASH array using index defined in AWK?
Bash:
table=(a b c d e)
instructions | awk " BEGIN {index=0} {print \"${table[**index**]}\"; index++} "