#!/bin/bashread -p "please enter your score(0-100)": aif [ $a -ge 86 ] && [ $a -le 100 ];then echo "$a is great"elif [ $a -ge 60 ] && [ $a -le 85 ];then echo "$a is pass"else echo "$a is fail"fi
中文分号问题
出现了中文符号
请检查一下你第五行的分号 也就是elif那一行