Appearance
大小写转化
# 大写转小写 echo "Hello" | tr '[:upper:]' '[:lower:]' # 小写转大写 echo "Hello" | tr '[:lower:]' '[:upper:]'