Summary of shell's method for determining whether a variable is empty

Summary of shell's method for determining whether a variable is empty

How to determine whether a variable is empty in shell

In shell programming, the error checking items for parameters include whether the variable is assigned a value (that is, whether a variable is empty). The method to determine whether a variable is empty is as follows:

1. Variables are enclosed in " " quotes

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

[Output result] "IS NULL"

2. Judge directly by variables

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

[Output result] "IS NULL"

3. Use test to judge

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

【Output result】"dmin is not set!"

4. Use "" to judge

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

【Output result】"dmin is not set!"

You may also be interested in:
  • Detailed explanation of advanced usage examples of shell variables
  • Handling variables with spaces in shell script (bash script)
  • Numerical calculation of shell variables in Linux
  • Detailed explanation of special variables and extended variables in Shell programming
  • Shell programming variable numerical calculation method example
  • How to pass the value of the shell for loop variable to other shell scripts
  • Detailed explanation of variable numerical calculation in Shell programming (Part 2)
  • Detailed explanation of variable numerical calculation in Shell programming (I)
  • A brief explanation of the meaning of shell variables $#, $@, $0, $1, $2 in Linux
  • Determine whether the Linux Shell environment variable exists
  • Detailed explanation of variable types in Linux bash Shell
  • Linux Shell Script Series Tutorial (Part 4): Using Functions to Add Environment Variables
  • Linux Shell Script Tutorial Series (Part 3): Variables and Environment Variables
  • Detailed explanation of shell variables

<<:  How to use regular expression query in MySql

>>:  A brief talk about the knowledge you need to master when getting started with Vue

Recommend

JavaScript to achieve full screen page scrolling effect

After I finished reading JavaScript DOM, I had a ...

Detailed explanation of JavaScript's built-in objects Math and strings

Table of contents Math Objects Common properties ...

js to realize login and registration functions

This article example shares the specific code of ...

Solution to the problem of z-index not taking effect in CSS3

I recently wrote a combination of CSS3 and js, an...

Detailed explanation of MySql installation and login

Check if MySQL is already installed in Linux sudo...

Analyze several common solutions to MySQL exceptions

Table of contents Preface 1. The database name or...

How to install WSL2 Ubuntu20.04 on Windows 10 and set up the docker environment

Enable WSL Make sure the system is Windows 10 200...

Postman automated interface testing practice

Table of contents Background Description Creating...

Detailed explanation of Linux command file overwrite and file append

1. The difference between the command > and &g...

How to analyze SQL execution plan in MySQL through EXPLAIN

Preface In MySQL, we can use the EXPLAIN command ...

HTML fixed title column, title header table specific implementation code

Copy code The code is as follows: <!DOCTYPE ht...

Detailed installation and configuration tutorial of mysql5.7 on CentOS

Install Make sure your user has permission to ins...