#! /bin/sh
#while 语句
echo "enter passwd"
read passwd
while [ $passwd != "aaa" ];do
echo "sorry try again"
read passwd
done


#for 语句
#! /bin/bash
for i in a b c; do
echo "$i\n"
done

#case 语句

#! /bin/sh

echo "Enter a number"
read number
case $number in
1)
echo "you number is 1"
;;
2)
echo "yo number is 2"
;;
*)
exit 1
;;
esac

#if else elif fi

#! /bin/sh

echo "Is it morning? Please answer yes or no."
read YES_OR_NO
if [ "$YES_OR_NO" = "yes" ]; then
echo "Good morning!"
elif [ "$YES_OR_NO" = "no" ]; then
echo "Good afternoon!"
else
echo "Sorry, $YES_OR_NO not recognized. Enter yes or no."
exit 1
fi
exit 0

相关文章:

  • 2021-09-07
  • 2021-10-01
  • 2022-01-24
  • 2021-10-13
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-09-10
  • 2021-12-28
  • 2022-12-23
  • 2021-05-29
  • 2021-07-18
  • 2022-12-23
相关资源
相似解决方案