跳转至

du

1
2
3
4
5
# 对统计结果的大小进行排序
du -sh * | sort -h

# 一天内修改过的文件总大小
find /opt/www -type f -mtime -1 -exec du -ch {} + | grep total$
作者: aisuhua