Shell脚本用for循环遍历参数的方法技巧

时间:2021-05-23

1.当一个脚本需要传入的参数较多时,可以使用for循环进行参数遍历

示例:

#!/bin/bashnumber=65 #定义一个退出值index=1 #定义一个计数器if [ -z "$1" ];then #对用户输入的参数做判断,如果未输入参数则返回脚本的用法并退出,退出值65 echo "Usage:$0 + canshu" exit $numberfiecho "listing args with \$*:" #在屏幕输入,在$*中遍历参数for arg in $* do echo "arg: $index = $arg" let index+=1doneechoindex=1 #将计数器重新设置为1echo "listing args with \"\$@\":" #在"$@"中遍历参数for arg in "$@"do echo "arg: $index = $arg" let index+=1done

小技巧1:在"$*"和$*中遍历参数的区别

示例:

#!/bin/bashnumber=11if [ $# -eq 0 ];then echo "Usage: $0 + canshu" exit $numberfifor i in $* #在$*中遍历参数,此时每个参数都是独立的,会遍历$#次do echo $idoneechofor i in "$*" #在"$*"中遍历参数,此时"$*"被扩展为包含所有位置参数的单个字符串,只遍历一次do echo $idone

小技巧2:在"$@"和$@中遍历参数没有区别

示例:

#!/bin/bashnumber=11if [ $# -eq 0 ];then echo "Usage: $0 + canshu" exit $numberfifor i in $@do echo $idoneechofor i in "$@"do echo $idone

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章