행위

Egrep

DB CAFE

DBCAFE (토론 | 기여)님의 2018년 10월 19일 (금) 14:57 판 (새 문서: #Look for one string: grep "string" egrep "string" grep -E "string" #Look for either of two strings: egrep "string1|string2" grep -E "string1|string2" # Look for either of four str...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
thumb_up 추천메뉴 바로가기


  1. Look for one string:

grep "string" egrep "string" grep -E "string"

  1. Look for either of two strings:

egrep "string1|string2" grep -E "string1|string2"


  1. Look for either of four strings:

egrep "string1|string2|string3|string4" grep -E "string1|string2|string3|string4"