/ Published in: Bash
Expand |
Embed | Plain Text
find ./ -mtime -24 -type d | xargs du -sh
Comments
Subscribe to comments
You need to login to post a comment.
hokasu on 02/28/09
2 people have marked this snippet as a favorite
find ./ -mtime -24 -type d | xargs du -sh
Subscribe to comments
You need to login to post a comment.
Last 24 hours or last 24 days?
-mtime n True if the difference between the file last modification time and the time find was started, rounded up to the next full 24-hour period, is n 24-hour periods.