shell脚本之条件测试

组合条件测试:在多个条件间实现逻辑运算

    与:[ condition1 -a condition2 ]、condition1 && condition2
    或:[ condition1 -o condition2 ]、condition1 || condition2
    非:[ -not condition ]、[ ! condition ]

1.整型测试(整数比较)

运算符                    描述              示例    
num1 -gt num2             大于              [ $num -gt 100 ]    
num1 -lt num2             小于              [ $num -lt 100 ]   
num1 -ge num2             大于等于          [ $num -ge 100 ]    
num1 -le num2             小于等于          [ $num -le 100 ]    
num1 -eq num2             等于              [ $num -eq 100 ]    
num1 -ne num2             不等于            [ $num -ne 100 ]

2.字符测试(字符串比较)

运算符                描述                                示例    
                                                          test  "${String1}" \> "${String2}" 
String1 > String2     如果字String1大于String2,则为真    [ "${String1}" \> "${String2}" ]
                                                          [[ "${String1}" > "${String2}" ]]   
                                                           
                                                          test  "${String1}" \< "${String2}" 
String1 < String2     如果字String1小于String2,则为真    [ "${String1}" \< "${String2}" ]
                                                          [[ "${String1}" < "${String2}" ]]
                                                          
                                                          test  "${String1}" =="${String2}"   
String1 == String2    如果字String1等于String2,则为真    [ "${String1}" =="${String2}" ]
                                                          [[ "${String1}" =="${String2}" ]]
                                                          
                                                          test  "${String1}" !="${String2}" 
String1 != String2    如果字String1不等于String2,则为真  [ "${String1}" !="${String2}" ]
                                                          [[ "${String1}" !="${String2}" ]]
       
-n String             如果String长度为零,则为真          [ -n "${myvar}"]    
-z String             如果String长度为非零,则为真        [ -z "${myvar}" ] 
   
注意:
字符串必须用单引号或双引号引起来,有变量必须用双引号。
test与[]是shell命令,所以字符串比较操作符“<"、">"必须转义。

3.文件测试(判断文件是否存在及其属性)

参数  描述                                   示例
    
-e    文档存在则为真,同-a                   [[ -e /tmp ]]   
-f    文档存在且为普通文件则为真             [[ -f /etc/passwd ]]  
-d    文档存在且为目录则为真                 [[ -d /tmp ]]    
-L    文档存在且为符号链接为件则为真,同h    [[ -L /dev/stdin ]]    
-b    文档存在且为块设备则为真               [[ -b /dev/xvda ]]    
-c    文档存在且为字符设备则为真             [[ -c /dev/zero ]]    
-S    文档存在且为套接字文件则为真           [[ -S /dev/log ]]   
-p    文档存在且为命令管道则为真             [[ -p /var/run/autofs.fifo-net ]]   
-s    文档存在且为非空文件则为真             [[ -s /etc/passwd ]]   
 
-r    文档存在且具有可读权限则为真           [[ -r /etc/passwd ]]   
-w    文档存在且具有可写权限则为真           [[ -w /etc/passwd ]]    
-x    文档存在且具有可执行权限则为真         [[ -x /etc/init.d/dhcpd ]]    
-u    文档存在且具有SUID属性则为真           [[ -u a.txt ]]    
-g    文档存在且具有SGID属性则为真           [[ -g a.txt ]]
    
-nt    file1的mtime新于file2则为真           [[ a.txt -nt b.txt ]]    
-ot    file1的mtime旧于file2则为真           [[ a.txt -ot b.txt ]]

综合示例:

例1:如果当前主机名为空或者为“localhost”,则将其修改为chenss

   #!/bin/bash
   #
   host_name=$(hostname)
   [ -z "${host_name}" -o "${host_name}" == "localhost" ] && hostname chenss

例2:执行脚本,提示输入用户名,如果无此用户,则报错且继续提示输入用户名;如果UID等于0,则提示是root用户;如果大于0小于500,则提示是系统用户;否则,提示是普通用户。

  #!/bin/bash
  #
  until  [ "${user_name}" == "q" -o "${user_name}" == "quit" ] ; do
  
  read -p "PLS enter a username: " user_name
  user_id=$(id -u ${user_name})
  
  if ! id -u ${user_name} &> /dev/null; then
       continue
  elif [[ ${user_id} -eq 0 ]] ; then
       echo "It's a root user."
  elif [ ${user_id} -gt 0 -a ${user_id} -lt 500 ]; then
       echo "It's a system user."
  else
       echo "It's a common user."
  fi
  done

例3:添加10个用户,如果用户存在,则显示有此用户并把用户名标红,如果不存在,则添加并把用户名背景色标绿,且显示一共添加了多少用户。

  #!/bin/bash
  #
  declare -i num=0
  for i in {1..10}; do
       if id -u test$i &> /dev/null; then
             echo -e "user 33[0;31;1mtest$i33[0m is exists."
       else
             useradd test$i && echo -e "33[0;42;1mtest$i33[0m add succesfully."
             let num++
       fi
  done
  echo "Total add $num users."

原创文章,作者:老鼠上了猫,如若转载,请注明出处:http://www.178linux.com/7166

(1)
老鼠上了猫老鼠上了猫
上一篇 2015-08-24
下一篇 2015-08-24

相关推荐

  • DHCP服务

    一、DHCP概述     DHCP全称为Dynamic Host Configuration Protocol,即动态主机配置协议,其主要作用是使用网内的主机可以自动获取到网络相关参数信息,以达到高效管理主机的目的。     DHCP采用C/S架构,即Server/Client。…

    Linux干货 2015-05-11
  • 26期全程班-第六周博客作业

    请详细总结vim编辑器的使用并完成以下练习题 1、复制/etc/rc.d/rc.sysinit文件至/tmp目录,将/tmp/rc.sysinit文件中的以至少一个空白字符开头的行的行首加#; # cp /etc/rc.d/rc.sysinit /tmp # vim /tmp/rc.sysinit :%s@^\([[:space:]]\+\)@#\1@g 2…

    Linux干货 2017-03-07
  • Linux基本命令

    前言 今天学习了Linux下的一些基本命令,在此归纳总结一下这些命令的基本用法。 Linux命令帮助的获取     在拿到一个命令后不知道其用法,我们可以通过命令帮助来查看它的用法,但linux下内部命令和外部命令获取帮助的方法是有差别的。     内部命令:help command &n…

    Linux干货 2016-10-14
  • Shell中的循环语句

    在编程语言中,循环语句是最基本的语法之一,在Shell(这里是Bash)中也不例外。把相关内容整理一下吧。 这里包括for/while/until循环,以及变量自增的语法实例。 Shell(以Bash为例)中的循环语句一般有for、while、until这几种,偶尔还有写错语法的时候,这里结合实例来自己总结一下。也为今后使用提供一个快捷的资料获取渠道。 一、…

    Linux干货 2016-08-22
  • Linux进程篇16.4top命令:进程管理工具

    top命令:进程管理工具

    2017-12-18
  • 压缩及解压工具

    通过算法压缩数据,时间换空间。文本文件的压缩比更大,二进制文件的压缩比较小。 压缩工具占用cpu时钟。 compress/uncompress .Z gzip/gunzip .gz bzip2/bunzip2 .bz2 压缩比比gz大但是也没取代gz xz/unxz .xz 压缩比大,现在较流行。 zip/unzip .zip 归档工具,既能归档又能压缩 t…

    Linux干货 2016-08-21