gpt4 book ai didi

file - Unix 命令行 : How to get the total size of modified files in the last 30 days

转载 作者:行者123 更新时间:2023-12-05 00:00:35 26 4
gpt4 key购买 nike

我想知道如何获取过去 30 天内修改文件的总大小。

我发现这个命令 who onlye 给了我过去 30 天内修改过的文件的列表。

find . -name '*' -mtime -30

它很有用,但我想知道此列表的总大小。

有人可以帮忙解决这个问题吗?

最佳答案

也许这样做:

find . -mtime -30 -exec ls -l {} \;| awk '{s+=$5} END {print "Total SIZE: " s}'

关于file - Unix 命令行 : How to get the total size of modified files in the last 30 days,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9977379/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com