Bash Scripting - Conditionals
What will be the output of this script?
#!/bin/bash num=0 if [ $num ]; then echo "True" else echo "False" fi
#!/bin/bash num=0 if [ $num ]; then echo "True" else echo "False" fi
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions