bash:switch
This is an old revision of the document!
BASH - Switch
The switch construct can be used where nested conditions are required, but you don’t want to use complex if-else-elif chains.
#!/bin/bash echo -n "Enter a number: " read num case $num in 100) echo "Hundred!!" ;; 200) echo "Double Hundred!!" ;; *) echo "Neither 100 nor 200" ;; esac
The conditions are written between the case and esac keywords.
The *) is used for matching all inputs other than 100 and 200.
bash/switch.1576183046.txt.gz · Last modified: 2020/07/15 09:30 (external edit)