Shell脚本中判断输入变量或者参数是否为空的方法
先给大家分享一篇关于shell判断一个变量是否为空方法总结内容
shell判断一个变量是否为空方法总结
https://www.nhooo.com/article/154835.htm
1.判断变量
read-p"inputaword:"word if [!-n"$word"];then echo"youhavenotinputaword!" else echo"thewordyouinputis$word" fi
2.判断输入参数
#!/bin/bash if[!-n"$1"];then echo"youhavenotinputaword!" else echo"thewordyouinputis$1" fi
以下未验证。
3.直接通过变量判断
如下所示:得到的结果为:ISNULL
#!/bin/sh para1= if[!$para1];then echo"ISNULL" else echo"NOTNULL" fi
4.使用test判断
得到的结果就是:dminisnotset!
#!/bin/sh dmin= iftest-z"$dmin" then echo"dminisnotset!" else echo"dminisset!" fi
5.使用""判断
#!/bin/sh dmin= if["$dmin"=""] then echo"dminisnotset!" else echo"dminisset!" fi
下面是我在某项目中写的一点脚本代码,用在系统启动时:
#!/bin/bash
echo"InputParamIs[$1]"
if[!-n"$1"];then echo"youhavenotinputanullword!" ./app1;./app12;./app123 elif[$1-eq2];then ./app12;./app123 elif[$1-eq90];then echo"yy"; fi
热门推荐
10 对患者生日祝福语简短
11 结婚祝福语简短装备
12 周岁祝福语学生文案简短
13 订婚领证祝福语简短精辟
14 导师获奖祝福语大全简短
15 新婚购房祝福语简短精辟
16 牛年祝福语简短的爱人
17 送芒果的祝福语简短
18 送给学长毕业祝福语简短