https://www.linuxprobe.com/tr-text-usage.html
- 大小写替换
小写变大写
echo "hello world,www.linuxidc.com" | tr "a-z" "A-Z"
大写变小写
echo "hello world,www.linuxidc.com" | tr "A-Z" "a-z"
https://www.linuxprobe.com/tr-text-usage.html
echo "hello world,www.linuxidc.com" | tr "a-z" "A-Z"
echo "hello world,www.linuxidc.com" | tr "A-Z" "a-z"
0 条评论