课题一:删除匹配行的上一行和下一行数据
1. 删除匹配行的上一行和下一行:
sed -i -e ‘/string/{n;d}’ -e ‘$!N;/\n.*string/!P;D’ file.t...
Liemer_Lius
2年前 (2022-07-19) 1304℃
8喜欢
涉及重复的元字符
Repetition: A regular expression may be followed by one of several repetition operators:
? The preceding ...
Liemer_Lius
3年前 (2022-04-07) 391℃
8喜欢
1、if用法
awk '{if(length($2)!=0) print $1,$2}' 2.txt # 如果第二字段非空,则...
2.、去年每行最后的一个字符
awk '{sub(/.$/,"")}1'
awk '{printf ...
Liemer_Lius
4年前 (2021-05-27) 560℃
0喜欢
sed作为Linux三剑客命令之一,使用场景极多,总结常用和比较高级的用法,供后续参考。
sed的选项
> sed --help
Usage: sed [OPTION]... {script-only-if-no-other-scr...
Liemer_Lius
4年前 (2021-04-30) 582℃
2喜欢