Bash Scripting - Functions
Find the bug in this recursive function:
countdown() {
if [[ $1 -lt 0 ]]; then
echo "Done"
else
echo $1
countdown $1 - 1
fi
}
countdown 3