大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
这篇文章将为大家详细讲解有关怎么在Shell脚本中使用for循环遍历参数,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。
临高网站建设公司创新互联建站,临高网站设计制作,有大型网站制作公司丰富经验。已为临高1000+提供企业网站建设服务。企业网站搭建\外贸网站建设要多少钱,请找那个售后服务好的临高做网站的公司定做!1.当一个脚本需要传入的参数较多时,可以使用for循环进行参数遍历
示例:
#!/bin/bash number=65 #定义一个退出值 index=1 #定义一个计数器 if [ -z "$1" ];then #对用户输入的参数做判断,如果未输入参数则返回脚本的用法并退出,退出值65 echo "Usage:$0 + canshu" exit $number fi echo "listing args with \$*:" #在屏幕输入,在$*中遍历参数 for arg in $* do echo "arg: $index = $arg" let index+=1 done echo index=1 #将计数器重新设置为1 echo "listing args with \"\$@\":" #在"$@"中遍历参数 for arg in "$@" do echo "arg: $index = $arg" let index+=1 done
小技巧1:在"$*"和$*中遍历参数的区别
示例:
#!/bin/bash number=11 if [ $# -eq 0 ];then echo "Usage: $0 + canshu" exit $number fi for i in $* #在$*中遍历参数,此时每个参数都是独立的,会遍历$#次 do echo $i done echo for i in "$*" #在"$*"中遍历参数,此时"$*"被扩展为包含所有位置参数的单个字符串,只遍历一次 do echo $i done
小技巧2:在"$@"和$@中遍历参数没有区别
示例:
#!/bin/bash number=11 if [ $# -eq 0 ];then echo "Usage: $0 + canshu" exit $number fi for i in $@ do echo $i done echo for i in "$@" do echo $i done
关于怎么在Shell脚本中使用for循环遍历参数就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。