for NUM in 0 1 2 3 do case $NUM in 0) echo "cero"; 1) echo "uno"; 2) echo "dos"; 3) echo "tres"; esac done