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'
문제를 해결 한 하녀 .