gpt4 book ai didi

bash - 我可以将多少个参数传递给 bash 函数?

转载 作者:行者123 更新时间:2023-11-29 08:53:47 28 4
gpt4 key购买 nike

bash 函数可以接受的参数数量是否有限制?

最佳答案

要访问函数中的参数,您可以迭代它们:

foo () {
for arg # "in $@" is implied
do
echo $arg
done
}

bar () {
while [ $1 ]
do
echo $1
shift
done
}

或访问特定参数:

baz () {
# for arguments above $9 you have to use curly braces
echo $1 $9 ${10} ${121375}
}

关于bash - 我可以将多少个参数传递给 bash 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3986099/

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