首页 > 代码库 > shell script-判断式
shell script-判断式
test判断式
看下面:
1 test -e /opt/a.txt && echo "exist" || echo "not exist"
判断 /opt/a.txt 存不存在,存在输出 exist ,否则输出 not exist
test还有很多用法:
- 关于某个文件名的”文件类型“判断,如 test -e fileName 表示判断存在与否
- -e 该文件名是否存在
- -f 该文件名是否存在且为文件
- -d 该文件名是否存在且为目录
- 关于文件的权限,如 test -f fileName 表示判断文件是否可读
- -r
- -w
- -x
- 关于两个文件之间的比较 ,如 test file1 -nt file2
- -nt (newer than)判断 file1 是否比 file2 新
- -ot (older than)判断 file1 是否比 file2 旧
- 关于两个整数之间的判断,如 test n1 -eq n2
- -eq 判断相等
- -ne 判断不相等
- -gt n1 大于 n2
- -lt n1 小于 n2
- -ge 大于等于
- -le 小于等于
- 关于字符串比较
- Test -z string 若string是空字符串,返回true
- Test -n string 若string是空字符串,返回false
- test str1=str2
- test str1!=str2
- 多重条件判定
- -a 两个条件同时成立, 如 test -e file1 -a -e file2 ,表示判断 file1 和 file2 是否都存在
- -o 任何一个条件成立就成立,如 test -e file1 -o -e file2,file1 或 file2 任何一个存在都返回 true
- ! 否定,如 test ! -e file1, 表示 file1 不存在返回 true
[ ... ] 判断式
经常用于if 语句的判断
注意: [ ] 中每个组件都需要用空格符来分隔; 变量最好都用双引号括起来; 常量也用双引号括起来
shell script-判断式
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。