shell中大小写转换

shell中大小写转换 shell中转换大小写转换

 
echo 'hello' | tr 'a-z' 'A-Z'
echo 'HELLO' | tr 'A-Z' 'a-z'
原文地址:https://www.cnblogs.com/emanlee/p/11795323.html