Simple case statement
suggest changeIn its simplest form supported by all versions of bash, case statement executes the case that matches the pattern. ;;
operator breaks after the first match, if any.
#!/bin/bash var=1 case $var in 1) echo "Antartica" ;; 2) echo "Brazil" ;; 3) echo "Cat" ;; esac
Outputs:
Antartica
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents