The du
command can be used to determine how much disk space is allocated to a file or directory. The command can be used iteratively to help discover where large disk space use is occurring, perhaps to help identify data that could be archived to save space or to help troubleshoot misbehaving applications or processes.
I find the most useful form of this command to be:
du -c -h -d 1 ./*
-c
requests a "grand total" for the allocation of the sum of the files and directories being examined.-h
requests "human readable" sizes (so "23M" instead of 24131593).-d 1
requests that the output only display sizes for files and directories one level deep. This option controls the output, not the analysis; the entire directory tree is examined, but sizes and cumulative sizes are only displayed for items up to 1 level deep../*
looks at each item in the current directory. If you just use.
or don't supply a file or directory then the working directory is the "level 1" item; this can be a useful variant.
On my Mac (i.e. on macOS, a.k.a. OS X), to aid in my monthly quest for free disk space, I often use this variant:
du -c -h -d 1 ~/Documents/*
You can get just the grand total by doing:
du -c -h -d 0 ./*
or
du -c -h -d 0 .
© 2016 Dave Hein
This work by Dave Hein is licensed under a Creative Commons Attribution 4.0 International License.