develog

[linux] 파일 내용 검색, find xargs, grep 본문

OS & Shell/Linux

[linux] 파일 내용 검색, find xargs, grep

냐옴 2020. 11. 27. 15:19

find 사용

$ find ./ -name '*.xml' | xargs grep -i --color=auto 'search_text'

$ find ./ -name 'server.xml' | xargs grep '<Server port'

# 파일을 먼저 찾고
# 확장자가 .conf, .xml 인 목록만 필터링한 후
# 파일 내용에 'mysite.com' 이 들어있는 리스트를 출력한다
$ find . -type f | grep -E '\.(conf|xml)$' | xargs grep 'mysite.com'
./apache/conf/extra/httpd-vhosts.conf:    ServerName mysite.com
./tomcat/conf/server.xml:    <Engine name="Catalina" defaultHost="mysite.com">
./tomcat/conf/server.xml:      <Host name="mysite.com" appBase="/" unpackWARs="true" autoDeploy="true">

 

grep 사용

$ grep -r '검색글자' '검색경로'

$ grep -r 'mysite.com' /home/user/*

 

'OS & Shell > Linux' 카테고리의 다른 글

[Linux] ps kill  (0) 2019.03.28
[Linux] 파일 수정일자로 삭제  (0) 2018.03.07
[Linux] 파일 날짜 변경, touch  (0) 2018.03.07
[bash] find tomcat & exec  (0) 2017.11.23
[Linux] 명령어 같이 실행  (0) 2017.11.23
Comments