On Mon, 2012-08-13 at 20:41 +0100, Aaron Gray wrote:
> On 13 August 2012 19:53, Jack Craig <jack.craig.ap...@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!

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org

Reply via email to