find . -path "./test" -prune -o -cmin -5 -print
尋找超過2G 的檔案
find / -size +2000000k
find + md5sum to check file integrity
find . -name '*' -type f -exec md5sum '{}' >checksum.md5 \;
find . -name "*.png" | xargs -i rm {}
find . -name "*.png" -exec rm {} \;
Recursive update files timestamp
find . -exec touch {} \;
1 則留言:
尋找比某個檔案更新的檔案
find . -newer src/pgesv/HPL_equil.c -type f -exec ls -l {} \;
張貼留言