From: Jim Meyering Date: Tue, 21 Mar 1995 03:45:15 +0000 (+0000) Subject: (usage): Add ellipsis after `[OPTION]'. X-Git-Tag: textutils-1_12_1~248 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=107da866a64153377601ffd63baf5dc4a5267912;p=thirdparty%2Fcoreutils.git (usage): Add ellipsis after `[OPTION]'. Use FILE, not deprecated PATH. From Karl Berry. --- diff --git a/src/df.c b/src/df.c index 9c19824f92..e57de571a5 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); }