Bash Scripting - Conditionals
What will be the output of this bash script?
num=15 if [ $num -gt 10 ]; then echo "Greater" else echo "Smaller" fi
num=15 if [ $num -gt 10 ]; then echo "Greater" else echo "Smaller" fi
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions