Linux 정규 표현 식 sed

2781 단어 Linux 명령
grep 에 비해 sed 는 내용 을 바 꾸 어 화면 에 출력 할 수 있 습 니 다.
sed [  ] '  ' filename

옵션
-n :    sed            
-e :            sed  
-i :  sed               
......  

동작
d :   
p :   
s :     (  )
g :         
......

예:
인쇄 / etc / passwd 파일 의 세 번 째 줄 $sed -n '3p' /etc/passwd 인쇄 2 ~ 4 줄 $sed -n '2,4p' /etc/passwd 모든 줄 인쇄 $sed -n '1,$p' /etc/passwd
#test      
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:2:2:root:/bin:/usr/sbin/nologin

루트 를 포함 하 는 줄 인쇄
$sed -n '/root/p' test
root:x:0:0:root:/root:/bin/bash
bin:x:2:2:root:/bin:/usr/sbin/nologin

명령 에서 "/" 를 구분자 로 주의 하 십시오.- e 명령 을 더 하면 여러 행동 을 할 수 있 습 니 다.
$sed -e '/bash/p' -e '/sbin/p' -n test
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:2:2:root:/bin:/usr/sbin/nologin

줄 을 삭제 하거나 여러 줄 을 삭제 합 니 다.
$sed '2d' test
root:x:0:0:root:/root:/bin/bash
bin:x:2:2:root:/bin:/usr/sbin/nologin
#==========================
$sed '/root/d' test #    root  

문자 나 문자열 바 꾸 기
#s      ,g       ,   g         。
$sed '1s/root/iam/g' test
iam:x:0:0:iam:/iam:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:2:2:root:/bin:/usr/sbin/nologin
#       root   iam。
#sed 's/root/iam/g' test
#     root    iam

바 뀐 형식 은 sed 's / 오래된 문자열 / 새 문자열 / g filename' / '를 구분자 로 하고' \ # ',' @ '등 특수 문 자 를 사용 할 수 있 습 니 다.
#        root
$sed 's/root//g' test
:x:0:0::/:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:2:2::/bin:/usr/sbin/nologin
#              。

동작 a (행 후 추가), c (행 교체), i (행 전 추가)

좋은 웹페이지 즐겨찾기