zoukankan      html  css  js  c++  java
  • shell 判断变量是否为空

    一句话判断

    [ ! $a ] && echo "a is null"

    1.判断变量

    read -p "input a word :" word
    if  [ ! -n "$word" ] ;then
        echo "you have not input a word!"
    else
        echo "the word you input is $word"
    fi

    或者

    #!/bin/sh
    a=
    if [ ! -n "$a" ]; then
    echo "IS NULL"
    else
    echo "NOT NULL"
    fi

    或者

    #!/bin/sh
    a=
    if [ ! $a ]; then
    echo "IS NULL"
    else
    echo "NOT NULL"
    fi

    2.判断输入参数

    #!/bin/bash
    if [ ! -n "$1" ] ;then
        echo "you have not input a word!"
    else
        echo "the word you input is $1"
    fi

    以下未验证。

    3. 直接通过变量判断

    如下所示:得到的结果为: IS NULL

    #!/bin/sh
    para1=
    if [ ! $para1 ]; then
      echo "IS NULL"
    else
      echo "NOT NULL"
    fi 

    4. 使用test判断

    得到的结果就是: dmin is not set! 

    #!/bin/sh
    dmin=
    if test -z "$dmin"
    then
      echo "dmin is not set!"
    else  
      echo "dmin is set !"
    fi

    或者

    #!/bin/sh
    a=
    if test -z "$a" then 
    echo "a is not set!" 
    else
    echo "a is set !"
    fi

    5. 使用""判断

    #!/bin/sh 
    dmin=
    if [ "$dmin" = "" ]
    then
      echo "dmin is not set!"
    else  
      echo "dmin is set !"
    fi

    或者

    #!/bin/sh
    a=
    if [ "$a" = "" ]; then
    echo "a is not set!"
     else
    echo "a is set !"
    fi
     

    下面是我在某项目中写的一点脚本代码, 用在系统启动时:

    #! /bin/bash
    echo "Input Param Is [$1]"
    
    if [ ! -n "$1" ] ;then
     echo "you have not input a null word!"
     ./app1;./app12;./app123
    elif [ $1 -eq 2 ];then
     ./app12;./app123
    elif [ $1 -eq 90 ];then
     echo "yy";
    fi

  • 相关阅读:
    Python 基础(二)
    3.6:手写代码题(包含sql题)
    3.2:负载均衡、集群相关
    3.1:并发、安全与性能调优
    2.6:Linux/Shell脚本
    2.5:Git/Svn
    2.4:缓存
    2.3:消息中间件
    2.2:数据库
    2.1:常用框架
  • 原文地址:https://www.cnblogs.com/sea-stream/p/9968886.html
Copyright © 2011-2022 走看看