From a5b73412279eb8c36dc78266c6ee706d3c60db4d Mon Sep 17 00:00:00 2001 From: Nirjas Jakilim Date: Wed, 12 Oct 2022 02:21:41 +0600 Subject: [PATCH] Added information about du command (#2414) * Added information about du command * Fix minor errors --- .../101-live-in-terminal/140-du.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/102-devops/content/102-managing-servers/101-live-in-terminal/140-du.md b/content/roadmaps/102-devops/content/102-managing-servers/101-live-in-terminal/140-du.md index b003d7bdf..eff0f4424 100644 --- a/content/roadmaps/102-devops/content/102-managing-servers/101-live-in-terminal/140-du.md +++ b/content/roadmaps/102-devops/content/102-managing-servers/101-live-in-terminal/140-du.md @@ -1 +1,15 @@ -# Du \ No newline at end of file +# Du + +The du (**D**isk **U**sage) command is used to retrieve information about disk space usage information in a specified directory. + +the basic syntax of the command is the following: +`du ` or `du` + +Usage Example: +`du /home/nirzak` + +It can be used with various flags to customize the outputs. See the man page of this command for more options `man du` + +Useful Links +du man page +Du command with examples