设为首页 收藏本站
查看: 850|回复: 0

shell 的一些条件判断

[复制链接]

尚未签到

发表于 2018-8-29 12:50:36 | 显示全部楼层 |阅读模式
  1. shell判断文件,目录是否存在或者具有权限
  2. #!/bin/sh
  3.
  4. myPath="/var/log/httpd/"
  5. myFile="/var /log/httpd/access.log"
  6.
  7. # 这里的-x 参数判断$myPath是否存在并且是否具有可执行权限
  8. if [ ! -x "$myPath"]; then
  9. mkdir "$myPath"
  10. fi
  11.
  12. # 这里的-d 参数判断$myPath是否存在
  13. if [ ! -d "$myPath"]; then
  14. mkdir "$myPath"
  15. fi
  16.
  17. # 这里的-f参数判断$myFile是否存在
  18. if [ ! -f "$myFile" ]; then
  19. touch "$myFile"
  20. fi
  21.
  22. # 其他参数还有-n,-n是判断一个变量是否是否有值
  23. if [ ! -n "$myVar" ]; then
  24. echo "$myVar is empty"
  25. exit 0
  26. fi
  27.
  28. # 两个变量判断是否相等
  29. if [ "$var1" = "$var2" ]; then
  30. echo '$var1 eq $var2'
  31. else
  32. echo '$var1 not eq $var2'
  33. fi
  -f 和-e的区别
  Conditional Logic on Files
  -a file exists.
  -b file exists and is a block special file.
  -c file exists and is a character special file.
  -d file exists and is a directory.
  -e file exists (just the same as -a).
  -f file exists and is a regular file.
  -g file exists and has its setgid(2) bit set.

  -G file exists and has the same group>  -k file exists and has its sticky bit set.
  -L file exists and is a symbolic link.
  -n string length is not zero.
  -o Named option is set on.

  -O file exists and is owned by the user>  -p file exists and is a first in, first out (FIFO) special file or
  named pipe.
  -r file exists and is readable by the current process.

  -s file exists and has a>  -S file exists and is a socket.
  -t file descriptor number fildes is open and associated with a
  terminal device.
  -u file exists and has its setuid(2) bit set.
  -w file exists and is writable by the current process.
  -x file exists and is executable by the current process.
  -z string length is zero.
  是用 -s 还是用 -f 这个区别是很大的!


运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-558183-1-1.html 上篇帖子: linux shell 上传,下载ftp文件 下篇帖子: shell自动上传多份备份文件到FTP服务器
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表