If语句
If举例一
从键盘输入两个字符串,判断这两个字符串是否相等,如相等输出。
#! /bin/sh echo "input the first word :" read first echo "input the second word :" read second if [ "$first" = "$second" ] /*字符串的比较“=”为两个字符相等时为真*/ then echo "the first word is $first = the second word is $second" else echo $? fi
结果:
([root@SZ-FH-SERVER bin]#http://www.toutiao.com/a/a
input the first word :
ac
input the second word :
av
1
([root@SZ-FH-SERVER bin]#http://www.toutiao.com/a/a
input the first word :
ac
input the second word :
ac
the first word is ac
the second word is ac
”[”后面和”]”前面及等号“=“的前后都应有一个空格;注意这里是程序的退出情况,如果ar1和ar2的字符串是不相等的非正常退出,输出结果为1。
If举例二
编写一个Shell程序test10,
输入一个字符串,如果是目录,则显示目录下的信息,如为文件显示是一个文件。
#! /bin/sh echo "please input the file or the dircotry" read in if [ -d $in ] /*if命令的格式 */ then ls -l $in elif [ -f $in ] then echo "$in is file" else echo "input error" fi
结果:
([root@SZ-FH-SERVER bin]#http://www.toutiao.com/a/b
please input the file or the dircotry
ab
input error
([root@SZ-FH-SERVER bin]#http://www.toutiao.com/a/b
please input the file or the dircotry
abc
total 0
([root@SZ-FH-SERVER bin]#http://www.toutiao.com/a/b
please input the file or the dircotry
d.sh
d.sh is file
2022-9-10
2024最新激活全家桶教程,稳定运行到2099年,请移步至置顶文章:https://sigusoft.com/99576.html
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。 文章由激活谷谷主-小谷整理,转载请注明出处:https://sigusoft.com/16059.html