Recent Changes - Search:

Basics

Languages

Tools

OS

Resources

PmWiki

pmwiki.org

edit SideBar

Du

du summarizes the disk usage within a folder. The typical use usually is:

du -sh ./*

which will list all the files or folder (adding up all folder content) in the current directory. The output is sorted alphabetically, which is somewhat useful. Using Pipes and the sort function, the output can also be sorted by size:

du -sh ./* | sort -h

Edit - History - Print - Recent Changes - Search
Page last modified on June 04, 2019, at 11:36 AM