if else
read -p '请输入分数:' score
if [ $score -lt 60 ]; then
echo '60分以下'
elif [ $score -lt 70 ]; then
echo '60-70分之间'
elif [ $score -lt 80 ]; then
echo '70-80分之间'
elif [ $score -lt 90 ]; then
echo '80-90分之间'
else
echo '90分以上'
fi
case
read -p '请输入数字' week
week=`date +%w` #当前日期
case $week in
1)
echo '周一'
;;
2)
echo '周二'
;;
3)
echo '周三'
;;
4)
echo '周四'
;;
5)
echo '周五'
;;
6)
echo '周六'
;;
7)
echo '周末'
;;
*)
echo '输入有误'
;;
esac
while
num=5
while [ $num -gt -5 ]; do
if [ $(($num%2)) -eq 0 ];then
echo -e "