标签:core ring 筛选 ble 等级 shel comm class bsp
#!/bin/bash#筛选分数等级 score=500 if [ $score -gt 100 ];then echo "分数不正确"elif [ $score -ge 80 ];then echo "优秀"elif [ $score -ge 60 ];then echo "及格"elif [ $score -ge 0 ];then echo "不及格"else echo "分数不正确"fi
shell
原文地址:https://www.cnblogs.com/liuwenjun-03/p/14272056.html