如何在Shell中处理10个以上的参数
我在Linux上使用bash shell,并且要在shell脚本中使用10个以上的参数
回答:
使用花括号将其设置为关闭:
echo "${10}"
您还可以像这样遍历位置参数:
for arg
要么
for arg in "$@"
要么
while (( $# > 0 )) # or [ $# -gt 0 ]do
echo "$1"
shift
done
以上是 如何在Shell中处理10个以上的参数 的全部内容, 来源链接: utcz.com/qa/414888.html