메뉴 여닫기
개인 메뉴 토글
로그인하지 않음
만약 지금 편집한다면 당신의 IP 주소가 공개될 수 있습니다.

Egrep

데브카페
Devcafe (토론 | 기여)님의 2024년 10월 15일 (화) 01:24 판 (새 문서: #Look for one string: <source lang=sh> grep "string" egrep "string" grep -E "string" </source> #Look for either of two strings: <source lang=sh> egrep "string1|string2" grep -E "string1|string2" </source> # Look for either of four strings: <source lang=sh> egrep "string1|string2|string3|string4" grep -E "string1|string2|string3|string4" </source> category:linux)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
  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"

Comments