Linux
[Linux] grep, egrep 활용하기 자주 쓰이는 패턴
2021. 5. 14. 22:20반응형
앞으로 A, B, C를 문자 혹은 문자열이라고 하겠습니다.
grep, egrep을 파이프라인 (|)와 같이 쓰면 좋은 것들
find --name
ps -ef
egrep '(A|B|C)'
A혹은 B혹은 C가 들어가있는 것을 검색한다. (중복검색 X)
반응형
'Linux' 카테고리의 다른 글
[Linux] eBPF(Extended Berkeley Packet Filter)란? (0) | 2021.05.27 |
---|---|
[Linux] BPF(Berkeley Packet Filter), 말 그대로 패킷을 필터링하는 도구 (0) | 2021.05.26 |
[Linux] which 명령어가 나타내는 PATH 바꾸는 방법. How to change the path that comes with the output of which command? (2) | 2021.05.12 |
[Linux] 리눅스 man 명령어 man 페이지 사용법 (0) | 2021.04.27 |
[Linux] 권한 관리(chmod, chown, chgrp, umask) (0) | 2021.04.24 |