We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5d4727 commit b8311a4Copy full SHA for b8311a4
README.md
@@ -747,9 +747,21 @@ dig domain
747
```
748
749
### f. `du`
750
-Shows the disk usage of the files and directories in filename (du -s give only a total).
+Shows the disk usage of files or directories. For more information on this command check this [link](http://www.linfo.org/du.html)
751
```bash
752
-du filename
+du [option] [filename|directory]
753
+```
754
+Options:
755
+- `-h` (human readable) Displays output it in kilobytes (K), megabytes (M) and gigabytes (G).
756
+- `-s` (supress or summarize) Outputs total disk space of a directory and supresses reports for subdirectories.
757
+
758
+Example:
759
+```shell
760
+du -sh pictures
761
762
763
764
+1.4M pictures
765
766
767
### g. `fg`
0 commit comments