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 |
Tags
- profile
- netsh
- Quartz
- 줄바꿈 문자
- IntelliJ
- import
- Mac
- grep
- resource
- lsof
- plugin
- 단축키
- tomcat
- GIT
- port
- find
- vscode
- VirtualBox
- Source
- 네트워크
- ssh
- web.xml
- Windows
- context
- bash
- maVen
- JavaScript
- Windows 10
- Eclipse
- xargs
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 |