Hlavní navigace

Názor ke zprávičce Hledání největších souborů v systému od hawran.diskuse - Search current directory and sub-directories for biggest files find...

  • Aktualita je stará, nové názory již nelze přidávat.
  • 15. 7. 2011 10:33

    hawran.diskuse

    Search current directory and sub-directories for biggest files
    find -type f -exec du -sh {} + | sort -rh | head

    ???

    Já jsem musel napsat
    find -type f -exec du -s {} + | sort -k1,1 -rn | head