1
4
例如: $ cat test.file test.434 test.4343 test.4343t34 test^tests.344 test^34534/test $ sed -e 's/^.*\^.*$//' test.file test.434 test.4343 test.4343t34 $ 要完全删除违规行,请使用 $ sed -e '/\^/d' test.file test.434 test.4343 test.4343t34 |
2
0
其他方式 AWK
猛击
可能是最快的
|
lonix · 使用sed从JSON中提取非贪婪正则表达式 1 年前 |
Dima Malko · 如何在指定符号前添加符号? 2 年前 |
shekharsabale · 从列表元素捕获子字符串 2 年前 |
Katia · 根据特定规则进行多行匹配 2 年前 |
MHA · Pandas str.extract()以字母结尾的数字 2 年前 |
Slava Vir · 如何查找后面“/”之间的最后一组 2 年前 |