我在Linux上使用bash shell,并且要在shell脚本中使用10个以上的参数
使用花括号将其设置为关闭:
echo "${10}"
您还可以像这样遍历位置参数:
for arg
要么
for arg in "$@"
while (( $# > 0 )) # or [ $# -gt 0 ] do echo "$1" shift done