我是bash的新手,找不到很好的教程来回答我的问题。 array=( item1 item2 item3) for name in ${array[@]}; do echo current/total ... some other codes done 我想计算“当前”和“总计”值,因为它的预期输出为: 1/3 2/3 3/3 谢谢你的提示
我有这个数组: declare -A astr 我向其中添加元素: astr[elemA]=123 astr[elemB]=199 但是稍后,我需要知道什么是索引ID(elemA和elemB)并列出它们。 echo "${astr[@]}" #this only get me the values...