Skip to content

tr

大小写转化

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

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