Bash Scripting - Conditionals
What will be the output of this script?
var="" if [ -z "$var" ]; then echo "Empty" else echo "Not Empty" fi
var="" if [ -z "$var" ]; then echo "Empty" else echo "Not Empty" fi
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions