使用sed命令:
[root@xusx xusx]# cat a.txt
a123b123c
ab12abc
[root@xusx xusx]# sed 'y#abc#def#' a.txt
d123e123f
de12def
使用tr命令:
[root@xusx xusx]# cat a.txt
a123b123c
ab12abc
[root@xusx xusx]# tr 'abc' 'def' <a.txt
d123e123f
de12def
使用sed命令:
[root@xusx xusx]# cat a.txt
a123b123c
ab12abc
[root@xusx xusx]# sed 'y#abc#def#' a.txt
d123e123f
de12def
使用tr命令:
[root@xusx xusx]# cat a.txt
a123b123c
ab12abc
[root@xusx xusx]# tr 'abc' 'def' <a.txt
d123e123f
de12def