字符串大小写替换
echo "ABC" | tr [[:upper:]] [[:lower:]] 大写替换成小写
echo "abc" | tr [[:lower:]] [[:upper:]] 小写替换成大写