OS/Linux

console file control

아르비스 2015. 1. 15. 11:01

linux에서 file control에 필요한 command


@ Disk 사용량 확인

df -h


@ 특정 size 이상 file 검색

find /block -type f -size +1048576


@ 폴더내 Size 확인

du -sh *


@ 특정 일자 이전 file 삭제

find . ! -newermt 2015-01-14 ! -type d -delete


@ 1일전 File / Folder 삭제 (mtime 기준)

find . -type d -mtime +1 -exec rm -r {} \;


@ 특정 일자 이전 file 및 폴더 삭제 (생성일자 기준)

ls -l | grep 2015-01-14 | xargs rm -rf


@ 하위 폴더의 특정 일자 file 삭제

find . -type f | grep 2015-01-14 | xargs rm