728x90
반응형
파일 내용찾기
# 파일 안에 Chapter라는 단어 찾기
% grep "Chapter" Gatsby.txt
# 기본적으로 대소문자를 구분한다.
% grep "Gatsby" Gatsby.txt
# -i옵션 : 대소문자 구분없이 검색
% grep "chapter" Gatsby.txt -i
# -w 단어만 정확하게 검색
# not search whatever, only ate
% grep "ate" Gatsbytxt -w
재귀적 검색
# -r: 디렉터리 지정하지 않으면 현재 디렉터리에서 하위까지 검색
% grep -r "chicken"
# a 혹은 e가 들어있는 단어 검색
# aeeapple / eggepple
% grep -ri "egg[ae]pple"
728x90
반응형
'linux' 카테고리의 다른 글
$'\r': command not found 쉘스크립트 에러날 때 (0) | 2023.07.03 |
---|---|
wsl2 System has not been booted with systemd as init system (PID 1). Can't opera (0) | 2023.02.11 |
linux 찾기 명령어 locate find (0) | 2022.09.07 |
linux 단축키 (0) | 2022.09.06 |
linux 명령어 복사, 이동, 삭제 (0) | 2022.08.09 |