How to search for large files >1Gigabyte via command line

NOSpaze nospaze at gmail.com
Wed Aug 15 05:24:35 UTC 2012


On Mon, 2012-08-13 at 20:41 +0100, Aaron Gray wrote:
> On 13 August 2012 19:53, Jack Craig <jack.craig.aptos at gmail.com> wrote:
> 
>     du -ahx * | sort -rh | head -30

Kinda same approach with find, just for files...

find . -type f -print0 | xargs -0 du -h | sort -hr | head -30

Greets!



More information about the users mailing list