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
- tomcat
- profile
- Eclipse
- vscode
- netsh
- xargs
- Windows 10
- 단축키
- context
- web.xml
- 네트워크
- GIT
- 줄바꿈 문자
- bash
- find
- VirtualBox
- Windows
- IntelliJ
- JavaScript
- plugin
- Source
- ssh
- port
- lsof
- Quartz
- grep
- maVen
- import
- Mac
- resource
Archives
- Today
- Total
develog
[Linux] 오래된 파일 검색, 삭제 본문
# 오래된 파일 검색 (14일 이전 파일)
find . -mtime +14 -exec ls -lt --time-style=long-iso {} \;
# 오래된 파일 삭제 (14일 이전 파일)
find . -mtime +14 -exec rm {} \;
'OS & Shell > Linux' 카테고리의 다른 글
Linux 64 bit 확인 (0) | 2014.07.17 |
---|---|
현재 디렉토리 용량 확인 (0) | 2013.12.09 |
명령어 (0) | 2013.09.03 |
[linux] iptables (0) | 2013.09.02 |
[bash] sudo, sudoers, ALL=(ALL:ALL) ALL (0) | 2013.07.23 |
Comments