Questions tagged «tr»

2
tr如何将一个单词翻译成另一个单词?
我有一个文件ma.txt,它包含ls -l; 的输出;当我运行tr命令(tr "nik-pc" "root")时,得到以下输出: nik-pc@nik:~$ cat ma.txt total 52 drwxr-xr-x 2 nik-pc nik-pc 4096 Mar 11 11:33 Desktop lrwxrwxrwx 1 nik-pc nik-pc 2 Mar 8 22:54 di -> hd drwxr-xr-x 3 nik-pc nik-pc 4096 Mar 13 13:28 Documents drwxr-xr-x 7 nik-pc nik-pc 4096 Mar 14 18:21 Downloads drwxr-xr-x 2 …

2
如何在所有空格前添加反斜杠?
如何在每个空格前加反斜杠,最好使用tr或sed命令? 这是我的脚本: #!/bin/bash line="hello bye" echo $line | tr ' ' "\\\ " 应该用一个反斜杠替换一个空格,然后再一个空格,但这只是用一个反斜杠而不是反斜杠+空格来替换空格。 这是我得到的输出: hello\bye 预期产量: hello\ bye
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.