#expr判断是否整数(因为expr只支持整数(正整数和负整数),如果加一个非数字,会报错,$?则会返回非0) expr 1 \+ $1 &>/dev/null if [ $? -eq 0 ];then echo '$1为整数字'else echo '$1非数字'fi