Bash Scripting - Conditionals
What will be the output of this script?
#!/bin/bash num=10 if [ $num -lt 5 ]; then echo "Less than 5" elif [ $num -lt 15 ]; then echo "Less than 15" else echo "15 or more" fi
