欢迎来到代码驿站!

Shell

当前位置:首页 > 脚本语言 > Shell

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

时间:2021-07-13 08:21:37|栏目:Shell|点击:

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

总结

上一篇:Linux Shell 截取字符串的方法示例

栏    目:Shell

下一篇:linux定时任务出现command not found解决办法

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

本文地址:http://www.codeinn.net/misctech/156538.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有