Linux|Linux 中 Shell 中的数组(将命令行参数作为数组的元素)

#!/bin/sh num=$# one=1 zero=0 array=($@)#将命令行参数作为数组元素 while [ ${num} != ${zero} ] do let "num-=one" echo "${array[num]}" done


    推荐阅读