nixcraft ([personal profile] nixcraft) wrote2017-01-23 04:12 pm
Entry tags:

How to determine if a bash variable is empty in a Linux or Unix?



My shell script depends upon user input. How do I find out if a variable called $_JAIL path is empty under a Linux / Apple OS X / Unix like operating systems? What is the best way to determine if a variable in bash is empty?

Pass the -z option to the if command or conditional expression.

Read more here