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
NOTE: The conditions are written between the case and esac keywords.
The *) is used for matching all inputs other than 100 and 200.
bash/switch.1610207683.txt.gz · Last modified: 2021/01/09 15:54 by peter