使用tr就可以实现

大写转小写

1
table=`echo $line | tr '[:upper:]' '[:lower:]'`  

小写转大写

1
table=`echo $line | tr '[:lower:]' '[:upper:]'`