We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
grep "검색할 문자열" 로그파일이름
grep "ERROR" /path/to/logfile.log
grep -i "error" /path/to/logfile.log
grep -r "ERROR" /path/to/logfile.log
grep -n "ERROR" /path/to/logfile.log
grep -C 3 "ERROR" /path/to/logfile.log
The text was updated successfully, but these errors were encountered:
yunyoung1819
No branches or pull requests
Title
터미널 환경에서 특정 문자열이 포함된 로그 검색하기
Description
터미널 환경에서 특정 문자열이 포함된 로그를 검색하려면 grep 명령어를 사용
grep 명령어는 파일 내에서 특정 패턴을 검색하고 그 패턴이 포함된 줄을 출력
기본 사용법
추가 유용한 옵션들
-i: 대소문자를 구분하지 않고 검색
-r: 디렉토리 내의 모든 파일을 재귀적으로 검색
-n: 일치하는 줄의 줄 번호를 함께 출력
-C[숫자]: 일치하는 줄 전후 [숫자] 줄을 함께 출력
Reference
The text was updated successfully, but these errors were encountered: