- 20일 이전의 파일을 삭제
{{{
$find -type f ! -mtime -20 -exec rm -rf {} \;
}}}
- size가 0보다 큰 파일
$find /mnt/mp_single0/ -type f -size +0 -exec ls -ls {} \;
- 여러 파일명 패턴으로 검색
find Appl -type f | grep "\.c$\|\.h$"
$find -type f ! -mtime -20 -exec rm -rf {} \;
}}}
$find /mnt/mp_single0/ -type f -size +0 -exec ls -ls {} \;
find Appl -type f | grep "\.c$\|\.h$"
Comments