Skip to content

Instantly share code, notes, and snippets.

@outsideris
Created March 23, 2012 02:58
Show Gist options
  • Save outsideris/2166377 to your computer and use it in GitHub Desktop.
Save outsideris/2166377 to your computer and use it in GitHub Desktop.
sed usage
sed -n '/패턴/p' # 패턴의 라인만 출력
sed 's/패턴/치환문자/g' # 문자열 바꾸기
#정규식
\n # new line
\+ # 1개 이상
\{n\} # n개이상
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment