case $NUMBER in 1) echo -n "One" ;; 2 | 3) echo -n "Two or three" ;; 10) echo -n "Ten" ;; *) echo -n "Unknown number" ;; esac