मेरे पास यह सरणी है:
declare -A astr
मैं इसमें तत्व जोड़ता हूं:
astr[elemA]=123
astr[elemB]=199
लेकिन बाद में मुझे यह जानने की जरूरत है कि इंडेक्स आईडी (एलईएमएक्सए और एलएमबी) क्या हैं और उन्हें सूचीबद्ध करें।
echo "${astr[@]}" #this only get me the values...
astr2=(a b c d e);echo ${!astr2[@]};unset astr2[2];echo ${!astr2[@]}
thx!