Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Linux 中有一个巨大的文件库(文件目录),每天添加/修改文件,我想在 Linux 中查找过去 30 天内修改的文件数量和文件总大小。我该怎么做?
该find命令可以查找在一定时间内被修改(mtime)或创建(ctime)的文件。wc可以告诉你一组文件中的字节数。xargs将标准输入中的单词转换为命令的参数。
find
wc
xargs
find /path/to/vault -mtime 29 -type f | xargs wc -c
find可能是帮助识别具有您感兴趣的属性的文件的最有用的工具之一。我保证花时间去学习它会是值得的。