if, elif, else statement issues in Bash
There is a space missing between elif and [: elif[ “$seconds” -gt 0 ] should be elif [ “$seconds” -gt 0 ] All together, the syntax to follow is: if [ conditions ]; then # Things elif [ other_conditions ]; then # Other things else # In case none of the above occurs fi As … Read more