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 |
Tags
- 단축키
- tomcat
- Quartz
- bash
- lsof
- JavaScript
- GIT
- find
- import
- Windows
- profile
- VirtualBox
- Windows 10
- Mac
- vscode
- port
- ssh
- web.xml
- maVen
- grep
- IntelliJ
- plugin
- 줄바꿈 문자
- 네트워크
- context
- xargs
- Source
- netsh
- Eclipse
- resource
Archives
- Today
- Total
develog
[bash] find 사용 예제 본문
## 확장자 여러 개 대상 ( .xml 이거나 .conf 인 것만 )
find . -name '*.xml' -o -name '*.conf'
## 특정 파일 제외
find . -type f -not -name 'backup.sh'
## 특정 경로 제외
find . -type f -not -path '*/apache/*'
Comments