linux文件中删除某行指定字符串之前的内容
发布网友
发布时间:2022-04-24 05:54
我来回答
共1个回答
热心网友
时间:2023-10-03 14:10
root@localhost:~# cat 2
a=1 b=2 c=3
d=5 ========== 1234
1234567899
root@localhost:~# sed 's/.*==//g' 2
a=1 b=2 c=3
1234
1234567899
热心网友
时间:2023-10-03 14:10
root@localhost:~# cat 2
a=1 b=2 c=3
d=5 ========== 1234
1234567899
root@localhost:~# sed 's/.*==//g' 2
a=1 b=2 c=3
1234
1234567899