diff options
author | Jim Meyering <jim@meyering.net> | 1995-03-21 03:45:15 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1995-03-21 03:45:15 +0000 |
commit | 107da866a64153377601ffd63baf5dc4a5267912 (patch) | |
tree | 69fe4ce2f516036dd7d73b6d3269052d7d9d3d10 /src/df.c | |
parent | 88650610c14f88a9a680cf55fd0bb6729eb741d9 (diff) | |
download | coreutils-107da866a64153377601ffd63baf5dc4a5267912.tar.xz |
(usage): Add ellipsis after `[OPTION]'.
Use FILE, not deprecated PATH. From Karl Berry.
Diffstat (limited to 'src/df.c')
-rw-r--r-- | src/df.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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); } |