diff options
author | Jim Meyering <jim@meyering.net> | 1993-10-09 20:44:16 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1993-10-09 20:44:16 +0000 |
commit | 87372cd3aefb4154d9096a491700576d551abd1f (patch) | |
tree | 152f4b579d8b9b064d01fbd009795771098e5410 /src/dd.c | |
parent | 4ab2d8f53aa7198e41d0e4e0e94055dc1f6e31ba (diff) | |
download | coreutils-87372cd3aefb4154d9096a491700576d551abd1f.tar.xz |
merge with 3.8.3e
Diffstat (limited to 'src/dd.c')
-rw-r--r-- | src/dd.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1073,13 +1073,13 @@ static void usage (status) int status; { - fprintf (stderr, "\ + fprintf (status == 0 ? stdout : stderr, "\ Usage: %s [OPTION]...\n\ \n", program_name); if (status == 0) - fprintf (stderr, "\ + fprintf (stdout, "\ bs=BYTES force ibs=BYTES and obs=BYTES\n\ cbs=BYTES convert BYTES bytes at a time\n\ conv=KEYWORDS convert the file as per the comma separated keyword list\n\ @@ -1090,8 +1090,8 @@ Usage: %s [OPTION]...\n\ of=FILE write to FILE instead of stdout, don't truncate file\n\ seek=BLOCKS skip BLOCKS obs-sized blocks at start of output\n\ skip=BLOCKS skip BLOCKS ibs-sized blocks at start of input\n\ - --help provide this help\n\ - --version show program version\n\ + --help display this help and exit\n\ + --version output version information and exit\n\ \n\ BYTES may be suffixed: by xM for multiplication by M, by c for x1,\n\ by w for x2, by b for x512, by k for x1024. Each KEYWORD may be:\n\ |