Linux

[Linux] grep 명령어 복수파일 검색

먹세 2023. 2. 28. 14:33
// aaa라는 문자열이 포함된 현재 경로의 01~31 숫자가 포함된 모든 로그파일 검색
grep "aaa" $(ls ./*[01-31]-log.log)

 

반응형