使用tr就可以实现 大写转小写 table=`echo $line | tr '[:upper:]' '[:lower:]'` 小写转大写 table=`echo $line | tr '[:lower:]' '[:upper:]'`