gpt4 book ai didi

linux - 如何在shell中处理10多个参数

转载 作者:IT老高 更新时间:2023-10-28 12:24:56 26 4
gpt4 key购买 nike

我在 linux 上使用 bash shell,想在 shell 脚本中使用超过 10 个参数

最佳答案

使用花括号来设置它们:

echo "${10}"

任何位置参数都可以保存在变量中,以记录其使用情况并使以后的语句更具可读性:

city_name=${10}

如果传递的参数较少,则后面位置的值将被取消设置。

您还可以像这样迭代位置参数:

for arg

for arg in "$@"

while (( $# > 0 ))    # or [ $# -gt 0 ]
do
echo "$1"
shift
done

关于linux - 如何在shell中处理10多个参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4912733/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com