sed命令替换/覆盖匹配的行

假设./test.txt文本的内容:
1111111
2222222
test_line_one
test_line_two=/test/test.sh -a 3333333
4444444

实例1:
sed -i 's/^test_line_one.*/7777777/g' ./test.txt
i :插入
s :取代      
^ :从行头匹配
.* :匹配所有直到行尾
g :[address[,address]]g 将hold space中的内容拷贝到pattern space中,原来pattern space里的内容清除

匹配存在test_line_one的行,并替换为7777777

实例2:
如果替换的字符串中存在(/),需要把分隔符(/)改为其他符号,如(#)
sed -i 's#^test_line_two.*#test_line_two=/test/test.sh -a 123#g' ./test.txt
匹配存在test_line_two的行,并替换为test_line_two=/test/test.sh -a 5555555

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值