summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1995-03-21 03:45:15 +0000
committerJim Meyering <jim@meyering.net>1995-03-21 03:45:15 +0000
commit107da866a64153377601ffd63baf5dc4a5267912 (patch)
tree69fe4ce2f516036dd7d73b6d3269052d7d9d3d10 /src
parent88650610c14f88a9a680cf55fd0bb6729eb741d9 (diff)
downloadcoreutils-107da866a64153377601ffd63baf5dc4a5267912.tar.xz
(usage): Add ellipsis after `[OPTION]'.
Use FILE, not deprecated PATH. From Karl Berry.
Diffstat (limited to 'src')
-rw-r--r--src/df.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/df.c b/src/df.c
index 9c19824f9..e57de571a 100644
--- a/src/df.c
+++ b/src/df.c
@@ -17,7 +17,7 @@
/* Usage: df [-aikPT] [-t fstype] [-x fstype] [--all] [--inodes] [--print-type]
[--type fstype] [--exclude-type fstype] [--kilobytes] [--portability]
- [path...]
+ [file...]
Options:
-a, --all List all filesystems, even zero-size ones.
@@ -517,7 +517,7 @@ usage (status)
program_name);
else
{
- printf ("Usage: %s [OPTION] [PATH]...\n", program_name);
+ printf ("Usage: %s [OPTION]... [FILE]...\n", program_name);
printf ("\
\n\
-a, --all include filesystems having 0 blocks\n\
@@ -533,7 +533,7 @@ usage (status)
--help display this help and exit\n\
--version output version information and exit\n\
\n\
-If no PATHs are given, list all currently mounted filesystems.\n");
+If no FILEs are given, list all currently mounted filesystems.\n");
}
exit (status);
}