- 论坛徽章:
- 0
|
awk能否实现这些功能
一行其前面第5行之前
我试了一下发现awk可以,但是方法太繁琐,显示不出awk的优势,想问烈火有没有什么简便的方法可以实现,如果用sed我只知道一行一行的处理,他需要匹配之后在前几行插入,想请问该怎么办?
awk实现方法(想问有没有简单点的方法)
BEGIN{
found = 0;
ind=0;
collected = 6;
insert_point = -1;
line_file1 = 0;
string = ARGV[1];
delete ARGV[1];
}
{if(NR == FNR && found == 0){
if ($0 !~ string)
{
table[ind] = $0;
ind = (ind+1)%11;
}
else
{
found = 1;
table[ind] = $0;
ind = (ind+1)%11;
printf("%d %s\n",ind,$0);
}
}
else if (NR == FNR && found == 1)
{
if (collected < 11)
{
table[ind] = $0;
ind = (ind+1)%11;
collected++;
}
line_file1 = NR;
}
else
{
output[FNR-1] = $0;
if ($0 ~ string)
{
insert_point = FNR;
printf("insert point:%d\n",insert_point);
}
}
}
END{
if (found == 0)
{
print("not found in file1\n" ;
exit;
}
if (insert_point == -1)
{
print("not found in file2\n" ;
exit;
}
printf("%d %d\n",NR,line_file1);
for (i = 0; i < NR - line_file1; i++)
{
if(i == insert_point - 6)
{
for(j = 0; j < collected; j++)
{
ind = (ind == 0? 10: ind-1);
printf("%s\n",table[ind]);
}
}
printf("%s\n",output);
}
} |
|