What is du command in Linux?

The `du` command in Linux is used to estimate file space usage. It summarizes disk usage of each file and directory recursively, providing various options for customization. This command is helpful for monitoring and managing disk space on your system.

Keywords: du command, Linux, disk usage, file space, directory size, disk space management
Description: The `du` command provides a report on the space used by files and directories, aiding users in identifying large files and managing storage effectively.

Example usage of the `du` command:

du -sh /path/to/directory

This command will display the total size of the specified directory in a human-readable format.


Keywords: du command Linux disk usage file space directory size disk space management