typora/note/linux/command/tr 字符串转换替换删除.md

7 lines
411 B
Markdown
Raw Permalink Normal View History

2024-12-11 21:48:55 -05:00
- 逐个替换,不是整体替换
- command | tr string1 string2 替换命令执行结果中的string1为string2
- tr string1 string2 < filename 替换文件中的string1为string2
- tr options string1 < filename 替换文件中的匹配string 为string1
- tr "a-z" "A-Z" < passwd 小写字母替换成大写字母
- tr -d 'a-z' < passwd 只删除小写字母
- https://www.runoob.com/linux/linux-comm-tr.html