vi 등의 편집기로 파일을 열지 않고, 스크립트 명령어로만, 텍스트 파일 안의 원하는 line 전체를 삭제하는 방법이 있는지요. 감사합니다.
sed(1)를 쓰세요.
$ sed -i -e '3d' INPUT-FILE # 3번째 줄 제거 $ sed -i -e '4,$d' INPUT-FILE # 4번째 줄에서 끝까지 제거 $ sed -i -e '/REGEXP/d' INPUT-FILE # REGEXP를 포함된 줄 제거
-- C FAQ: http://www.eskimo.com/~scs/C-faq/top.html Korean Ver: http://www.cinsk.org/cfaqs/
C FAQ: http://www.eskimo.com/~scs/C-faq/top.html Korean Ver: http://cinsk.github.io/cfaqs/
텍스트 포맷에 대한 자세한 정보
<code>
<blockcode>
<apache>
<applescript>
<autoconf>
<awk>
<bash>
<c>
<cpp>
<css>
<diff>
<drupal5>
<drupal6>
<gdb>
<html>
<html5>
<java>
<javascript>
<ldif>
<lua>
<make>
<mysql>
<perl>
<perl6>
<php>
<pgsql>
<proftpd>
<python>
<reg>
<spec>
<ruby>
<foo>
[foo]
sed(1)를 쓰세요. $ sed
sed(1)를 쓰세요.
--
C FAQ: http://www.eskimo.com/~scs/C-faq/top.html
Korean Ver: http://www.cinsk.org/cfaqs/
C FAQ: http://www.eskimo.com/~scs/C-faq/top.html
Korean Ver: http://cinsk.github.io/cfaqs/
댓글 달기