shell条件测试

一.命令执行结果判定

&& 在命令执行后如果没有任何报错时会执行符号后面的动作

|| 在命令执行后如果命令有报错会执行符号后的动作

示例:

[root@qingdeng shell3]# sh sl.sh
/mnt/file is not exist
no

. 条件判断方法

在 shell 程序中,用户可以使用测试语句来测试指定的条件表达式的条件的真或假

[root@qingdeng shell3]# a=1
[root@qingdeng shell3]# b=1
[root@qingdeng shell3]# test $a = $b && echo yes || echo no
yes

[root@qingdeng shell3]# a=1
[root@qingdeng shell3]# b=2
[root@qingdeng shell3]# [ "$a" = "$b" ] && echo yes || echo no~
no~

[root@qingdeng shell3]# a=2
[root@qingdeng shell3]# [[ $a =~ 2|10 ]] && echo yes || echo no
yes

[root@qingdeng shell3]# a=3
[root@qingdeng shell3]# (( $a>0,$a<10 )) && echo yes
yes

. 判断表达式

3.1. 文件判断表达式

a )判断文件时否存在

[root@qingdeng shell3]# [ -a "file" ] && echo yes || echo no
no
[root@qingdeng shell3]# touch file
[root@qingdeng shell3]# [ -a "file" ] && echo yes || echo no
yes

b )判断文件类型

[root@qingdeng shell3]# [ -d /mnt ] && echo /mnt is directory
/mnt is directory

c )判定文件是否存在并不为空

[root@qingdeng shell3]# [ -s file ] || echo file is not exist or file is empty file
file is not exist or file is empty file
[root@qingdeng shell3]# ll file
-rw-r--r-- 1 root root 0 12月  8 20:53 file

d )判定文件权限

[root@qingdeng shell3]# [ -x file ] || echo file is not execute
file is not execute

e )判定文件新旧

[root@qingdeng shell3]# touch file1
[root@qingdeng shell3]# [ file -ot file1 ] && echo yes
yes

3.2. 字符串测试表达式

  1. 检测变量是否未空

    [root@qingdeng shell3]# b=hello
    [root@qingdeng shell3]# [ -z "b" ] && echo yes [root@qingdeng shell3]# [ -z "b" ] && echo yes || echo no
    no
    [root@qingdeng shell3]# [ -n "$b" ] && echo yes || echo no
    yes

  2. 比较字符

    [root@qingdeng shell3]# a=quite
    [root@qingdeng shell3]# [ "$a" = "b" ] && echo yes || echo no
    no

. 练习脚本

要求

++[root@haha ~]# sh checkfile.sh
please input filename: 当未输入任何字符时回车
Error: no checkfilename,Please input filename for check !! 报错
please input filename: /mnt/leefile 当输入/mnt/leeifle时
文件不存在时
/mnt/file is not exist
当文件存在时输入文件类型
/mnt/file is commom file 注意文件是什么类型就输出文件类型的相关输出
++

[root@qingdeng shell]# sh checkfile.sh
please input filename: 

Error: no checkfilename,Please input filename for check !!
[root@qingdeng shell]# sh checkfile.sh
please input filename: 
file
file is not exist
[root@qingdeng shell]# sh checkfile.sh
please input filename: 
/mnt/file
/mnt/file is commom file

. 整数测试表达式

[root@qingdeng shell3]# a=1
[root@qingdeng shell3]# b=2
[root@qingdeng shell3]# [ $a -eq $b ] && echo yes || echo no
no
[root@qingdeng shell3]# [ $a -ne $b ] && echo yes || echo no
yes
[root@qingdeng shell3]# [ $a -ge $b ] && echo yes || echo no
no
[root@qingdeng shell3]# [ $a -gt $b ] && echo yes || echo no
no
[root@qingdeng shell3]# [ $a -le $b ] && echo yes || echo no
yes
[root@qingdeng shell3]# [ $a -lt $b ] && echo yes || echo no
yes

. 逻辑操作符

[root@qingdeng shell3]# a=5
[root@qingdeng shell3]# [ "$a" -gt "0" -a "$a" -lt "10" ] && echo yes
yes
[root@qingdeng shell3]# [ "$a" -gt "0" ] && echo yes
yes
[root@qingdeng shell3]# [ "$a" -lt "0"   -o "$a" -gt "10" ] && echo yes
[root@qingdeng shell3]# [ "$a" -lt "0"   -o "$a" -gt "10" ] || echo yes
yes

. 判定综合训练

  1. 请用判定的方式书写一个 1 分 10 秒的倒计时,确保倒计时器符合日常显示规则
  1. 请书写一个猜数游戏,要求如下
[root@qingdeng shell]# sh guest_number.sh
please input a number between 0 ~ 9:
Error:Please input a number between 0 - 9
please input a number between 0 ~ 9:4
  4 is too small
please input a number between 0 ~ 9:6
  6 is too big
please input a number between 0 ~ 9:5
 HAHAHA!!! 
 YES You are right !!
Please again?(y/n)y
please input a number between 0 ~ 9:4
  4 is too big
please input a number between 0 ~ 9:3
  3 is too big
please input a number between 0 ~ 9:2
  2 is too big
please input a number between 0 ~ 9:1
  1 is too big
please input a number between 0 ~ 9:0
 HAHAHA!!! 
 YES You are right !!
Please again?(y/n)y
please input a number between 0 ~ 9:44
Error: is not between 0 ~ 9,Please input a number between 0 - 9
please input a number between 0 ~ 9:
相关推荐
东软吴彦祖11 分钟前
包安装利用 LNMP 实现 phpMyAdmin 的负载均衡并利用Redis实现会话保持nginx
linux·redis·mysql·nginx·缓存·负载均衡
卷卷的小趴菜学编程33 分钟前
c++之List容器的模拟实现
服务器·c语言·开发语言·数据结构·c++·算法·list
艾杰Hydra36 分钟前
LInux配置PXE 服务器
linux·运维·服务器
多恩Stone39 分钟前
【ubuntu 连接显示器无法显示】可以通过 ssh 连接 ubuntu 服务器正常使用,但服务器连接显示器没有输出
服务器·ubuntu·计算机外设
慵懒的猫mi1 小时前
deepin分享-Linux & Windows 双系统时间不一致解决方案
linux·运维·windows·mysql·deepin
Allen Bright1 小时前
使用 JMeter 的 Autostop Listener 插件:自动化性能测试的守护者
运维·jmeter·自动化
晚秋贰拾伍1 小时前
设计模式的艺术-代理模式
运维·安全·设计模式·系统安全·代理模式·运维开发·开闭原则
阿无@_@1 小时前
2、ceph的安装——方式二ceph-deploy
linux·ceph·centos
牙牙7051 小时前
ansible一键安装nginx二进制版本
服务器·nginx·ansible
hhzz1 小时前
ansible自动化运维实战--复制模块和用户模块(3)
运维·自动化·ansible