linux 中sed命令如何同时将多个字符替换为指定字符

2022/8/17 5:22:59

本文主要是介绍linux 中sed命令如何同时将多个字符替换为指定字符,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

001、

(base) [email protected]:/home/test2# cat a.txt                      ## 测试数据
e f k
s g d
a c m
s e g
(base) [email protected]:/home/test2# sed 's/m/Q/g' a.txt            ## 将m替换为Q
e f k
s g d
a c Q
s e g
(base) [email protected]:/home/test2# sed 's/m\|k/Q/g' a.txt        ## 同时将m和k替换为Q
e f Q
s g d
a c Q
s e g
(base) [email protected]:/home/test2# sed 's/m\|k\|a/Q/g' a.txt     ## 同时将m、k和a替换为Q
e f Q
s g d
Q c Q
s e g

 



这篇关于linux 中sed命令如何同时将多个字符替换为指定字符的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程