이 페이지에 작성한 사례를 더욱 확충해 나갈 생각은 없다. 만약 그러한 순간이 온다면 sed1line.txt를 참조하면 될 일이다.
$ cat file one two three four five $ sed 'p' file one one two two three three four four five five # -n 옵션이 필요한 이유 $ sed -n 'p' file one two three four five # 라인 범위를 지정하여 출력 $ sed -n '1,3p' file one two three $ sed -n '2,$p' file two three four five # 특정 패턴이 있는 라인을 출력 $ sed -n '/four/p' file four $ sed -n '/^f/p' file four five $ sed '/four/!d' file four # 첫 줄부터 패턴이 있는 줄까지 출력 $ sed '/four/q' file one two three four # 첫 줄부터 패턴이 있는 줄의 직전까지 출력 $ sed -n '/four/q;p' file one two three # 패턴이 있는 줄만 빼고 출력 $ sed '/two/d' file one three four five # 패턴이 있는 줄부터 끝까지 출력 $ sed -n '/three/,$p' file three four five # 패턴이 있는 줄의 다음부터 끝까지 출력 $ sed '1,/three/d' file four five
댓글 없음:
댓글 쓰기