티스토리 뷰

특정 문자열과 일치하는 내용을 가지고 있는 파일을 확인하고 싶을 때 

grep 을 이용하여 내용을 확인할 수 있다.


       -L, --files-without-match

              Suppress normal output; instead print the name of each input file from which no output would normally have been printed.               The scanning will stop on the first match.


       -l, --files-with-matches

              Suppress normal output; instead print the name of each input file from which output would normally have been printed.                   The scanning will stop on the first match.  (-l is specified by POSIX.)


<문자열과 일치하는 파일 확인>

> echo a > a.txt

> echo b > b.txt


<파일 확인>

grep [-l][-L] 문자열 파일위치

  -l  : 일치하는 파일

  -L : 일치하지 않는 파일 



> grep -l a *

a.txt

> grep -L a *

b.txt



<문자열과 일치하는 파일의 라인 번호 확인>

> cat a.txt | grep -n a

1:a


반응형
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
글 보관함