diff options
author | Jim Meyering <jim@meyering.net> | 2003-07-10 19:39:04 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-07-10 19:39:04 +0000 |
commit | d574f4a249f369f1809341cf6cd21686c8996fb5 (patch) | |
tree | a09f26f1bcaaa22227bab609176a077a67fc00e7 /src | |
parent | f5f030cd09d3950a2444ac593d50d7c98f2ffb6f (diff) | |
download | coreutils-d574f4a249f369f1809341cf6cd21686c8996fb5.tar.xz |
(usage): Use 1024*1024 in place of 1048576.
Diffstat (limited to 'src')
-rw-r--r-- | src/head.c | 2 | ||||
-rw-r--r-- | src/tail.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/head.c b/src/head.c index 5a4943f32..b685cd85b 100644 --- a/src/head.c +++ b/src/head.c @@ -164,7 +164,7 @@ Mandatory arguments to long options are mandatory for short options too.\n\ fputs (VERSION_OPTION_DESCRIPTION, stdout); fputs (_("\ \n\ -N may have a multiplier suffix: b for 512, k for 1024, m for 1048576 (1 Meg)\n\ +N may have a multiplier suffix: b 512, k 1024, m 1024*1024.\n\ "), stdout); printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } diff --git a/src/tail.c b/src/tail.c index b923085d1..b994868a0 100644 --- a/src/tail.c +++ b/src/tail.c @@ -283,7 +283,7 @@ Mandatory arguments to long options are mandatory for short options too.\n\ If the first character of N (the number of bytes or lines) is a `+',\n\ print beginning with the Nth item from the start of each file, otherwise,\n\ print the last N items in the file. N may have a multiplier suffix:\n\ -b for 512, k for 1024, m for 1048576 (1 Meg).\n\ +b 512, k 1024, m 1024*1024.\n\ \n\ "), stdout); fputs (_("\ |