Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 단축키
- 줄바꿈 문자
- Windows
- bash
- find
- 네트워크
- Quartz
- grep
- import
- context
- ssh
- JavaScript
- lsof
- Windows 10
- resource
- port
- netsh
- web.xml
- vscode
- Eclipse
- plugin
- xargs
- GIT
- maVen
- tomcat
- Mac
- VirtualBox
- Source
- IntelliJ
- profile
Archives
- Today
- Total
develog
[linux] 파일 내용 검색, find xargs, grep 본문
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