du [ -a | -s ] [ -k ] [ -l ] [ -r ] [ -x ] [ File ... ]
The du command displays the number of blocks used for files. If the File parameter specified is actually a directory, all files within the directory are reported on. If no File parameter is provided, the du command uses the files in the current directory.
If the File parameter is a directory, then the number of blocks reported is the sum of blocks allocated for the files in the directory and the blocks allocated for the directory itself.
Specifying the -a flag reports the number of blocks in individual files. Whether the -a flag is used or not, individual files specified by the File parameter are always listed.
Specifying the -s flag reports the total blocks for all specified files or all files in a directory.
The block count includes indirect blocks of each file. Block count is calculated in 512-byte units independent of the cluster size used by the system. Specifying the -k flag calculates the block count in 1024-byte units.
Notes:
- Files with multiple links are counted and written for only one entry.
- Block counts are based only on file size; therefore, unallocated blocks are not accounted for in the reported block counts.
- If du cannot obtain the file attributes or cannot read directories, it reports an error and the exit status of the command is affected.
This command returns the following
exit values:
0 | Successful completion. |
>0 | An error occurred. |
du /home/fran
This displays the number of disk blocks in the /home/fran directory and each of its subdirectories.
/usr/bin/du | Contains the du command. |
The df command.
The Directory Overview in AIX 5L Version 5.1 System User's Guide: Operating System and Devices explains working with directories and path names.
The Files Overview in AIX 5L Version 5.1 System User's Guide: Operating System and Devices provides information on working with files.