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

 

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/281007.html

(0)
上一篇 2022年8月17日
下一篇 2022年8月17日

相关推荐

发表回复

登录后才能评论