有没有办法告诉sed
每秒钟发生一次替换模式?还是至少每隔两行?(当然可以使用脚本,但是我问自己是否sed
可以这样做)。
编辑
我发现
sed -e "s/pattern/replacement/g;n"
但是它取代了第一次出现的情况,而不是第二次出现的情况。
例
输入文件:
I have a pattern in each line
Also the second line has the pattern
Another pattern here
And -- you guess it -- a pattern
所需的输出:
I have a pattern in each line
Also the second line has the replacement
Another pattern here
And -- you guess it -- a replacement
sed -e 'n;s/2004-2009/6e législature/g'
我解决了问题。