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)

    No rules exist, and examples are simply life-savers answering the appeals of rules making vain attempts to exist.
    André Breton (1896–1966)

    In the examples that I here bring in of what I have [read], heard, done or said, I have refrained from daring to alter even the smallest and most indifferent circumstances. My conscience falsifies not an iota; for my knowledge I cannot answer.
    Michel de Montaigne (1533–1592)