행위

Egrep

DB CAFE

Dbcafe (토론 | 기여)님의 2020년 11월 19일 (목) 10:10 판
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"