5
특정 경로에서 파일을 제외하고`grep`을 실행하십시오.
./test/main.cpp검색 에서 파일을 제외하고 싶습니다 . 내가보고있는 것은 다음과 같습니다. $ grep -r pattern --exclude=./test/main.cpp ./test/main.cpp:pattern ./lib/main.cpp:pattern ./src/main.cpp:pattern 파이프 및 필터 배열에서 여러 명령을 사용하여 원하는 출력을 얻을 수 있지만 grep기본적으로 원하는 것을 이해하는 인용 / 이스케이프가 있습니까?
12
command-line
grep