-bash-4.2$ pwd
/data/mongo
计算目录中的文件数
-bash-4.2$ find . -type f | wc -l
227
查找最老的和最新的文件.
最老的文件:
-bash-4.2$ find -type f -printf '%T+ %p\n' | sort | head -n 1
2015-12-19+01:22:31.0000000000 ./.mozilla/firefox/y0w75f7h.default/gmp-gmpopenh264/1.5.3/gmpopenh264.info
最新的文件:
-bash-4.2$ find -type f -printf '%T+ %p\n' | sort | tail -n 1
2016-08-01+14:48:24.7670276210 ./.cache/abrt/lastnotification
(备注:printf 命令输出 %T(文件日期和时间)和 %P(带路径的文件名)参数。)
寻找最大的文件使用 %s(大小)参数,包括文件名(%f):
-bash-4.2$ find -type f -printf '%s %f \n' | sort -n | uniq | tail -1
71932461 mongodb-linux-x86_64-rhel70-v3.2-latest.gz
统计文件的所有者,使用%u(所有者):
-bash-4.2$ find -type f -printf '%u \n' | grep -v "\./\." | sort | uniq -c
227 mongo
找出很久以前访问过的某个文件:
-bash-4.2$ find -type f -printf '%a+ %p\n' | sort | head -n 1
Fri Jul 1 17:05:37.0064013744 2016+ ./.mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/.fedora-langpack-install
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/15498/viewspace-2122798/,如需转载,请注明出处,否则将追究法律责任。