|
发表于 2008-1-14 21:59:37
|
显示全部楼层
用sed很快,
只需要一行代码就行了,
我也是刚开始学脚本语言,
也不知道我写得好不好,
贴出来给你看一下。
e.g.
$ sed /'pattern'/d input_file > outtput_fle
'pattern' 是你要删除的那一行里的特征字符。
input_file 是你的文件
output_file 是你的结果文件。
如:
input_file如下:
#include <stdio.h>
int main()
{
printf("Hello world~");
return 0;
}
当你执行:sed /'main'/d input_file > output_file 之后。
output_file 为:
#include <stdio.h>
{
printf("Hello world~");
return 0;
} |
|