Paste-bin.xyz
Archive
Sign In
Login
Register
Username
Current Password
Keep me signed in.
Username
Full Name
Email
New Password
BASH
36
yes no
Guest on 26th August 2023 11:58:10 AM
echo
please enter
yes
or no
read
yesno
case
"
$yesno
"
in
y
|
Y
|
yes
|
Yes
)
echo
"You entered yes"
;;
n
|
N
|
No
|
no
)
echo
"You entered no"
;;
*
)
echo
"You did not enter a yes or no"
exit
10
;;
Raw Paste
echo please enter yes or no read yesno case "$yesno" in y|Y|yes|Yes) echo "You entered yes" ;; n|N|No|no) echo "You entered no" ;; *) echo "You did not enter a yes or no" exit 10 ;;
Login
or
Register
to edit or fork this paste. It's free.