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:
|
<<: How to use regular expression query in MySql
>>: A brief talk about the knowledge you need to master when getting started with Vue
After I finished reading JavaScript DOM, I had a ...
The first type: full CSS control, layer floating ...
Table of contents Math Objects Common properties ...
1. Add users and groups 1. Add mysql user group #...
Record the BUG that got me stuck all afternoon to...
This article example shares the specific code of ...
I recently wrote a combination of CSS3 and js, an...
Check if MySQL is already installed in Linux sudo...
Table of contents Preface 1. The database name or...
Enable WSL Make sure the system is Windows 10 200...
Table of contents Background Description Creating...
1. The difference between the command > and &g...
Preface In MySQL, we can use the EXPLAIN command ...
Copy code The code is as follows: <!DOCTYPE ht...
Install Make sure your user has permission to ins...