Du (Unix) - Examples

Examples

Sum of directories in kilobytes:

$ du -sk * 152304 directoryOne 1856548 directoryTwo

Sum of directories in human-readable format (Byte, Kilobyte, Megabyte, Gigabyte, Terabyte and Petabyte):

$ du -sh * 149M directoryOne 1.8G directoryTwo

disk usage of all subdirectories and files including hidden files within the current directory (sorted by filesize) :

$ du -sk .* *| sort -n

disk usage of all subdirectories and files including hidden files within the current directory (sorted by reverse filesize) :

$ du -sk .* *| sort -nr

The weight (size) of directories:

$ du -d 1 -c -h

The weight (size) of subdirectories under the root directory /, without traversing into other filesystems. Useful when /var /tmp or other directories are on separate storage from the root directory:

$ du -d 1 -c -h -x / or with du from GNU: $ du --max-depth=1 -c -h -x /

Read more about this topic:  Du (Unix)

Famous quotes containing the word examples:

    It is hardly to be believed how spiritual reflections when mixed with a little physics can hold people’s attention and give them a livelier idea of God than do the often ill-applied examples of his wrath.
    —G.C. (Georg Christoph)

    There are many examples of women that have excelled in learning, and even in war, but this is no reason we should bring ‘em all up to Latin and Greek or else military discipline, instead of needle-work and housewifry.
    Bernard Mandeville (1670–1733)

    Histories are more full of examples of the fidelity of dogs than of friends.
    Alexander Pope (1688–1744)