Bash Scripting - Conditionals
Identify the error in this script:
#!/bin/bash num=5 if [ $num -lt 10 ] echo "Less than 10" elif [ $num -lt 20 ]; then echo "Less than 20" fi
