From 731ee736da0687538e02c35b24d38d97cc584ff1 Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Fri, 27 Sep 2024 18:41:28 +0300 Subject: [PATCH] df: add longform options (#13855) Update df.md --- pages/linux/df.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/linux/df.md b/pages/linux/df.md index 50ed7e660f..615b2c361f 100644 --- a/pages/linux/df.md +++ b/pages/linux/df.md @@ -9,7 +9,7 @@ - Display all filesystems and their disk usage in human-readable form: -`df -h` +`df {{-h|--human-readable}}` - Display the filesystem and its disk usage containing the given file or directory: @@ -17,12 +17,12 @@ - Include statistics on the number of free inodes: -`df -i` +`df {{-i|--inodes}}` - Display filesystems but exclude the specified types: -`df -x {{squashfs}} -x {{tmpfs}}` +`df {{-x|--exclude-type}} {{squashfs}} {{-x|--exclude-type}} {{tmpfs}}` - Display filesystem types: -`df -T` +`df {{-T|--print-type}}`