diff options
Diffstat (limited to 'awklib/eg')
-rw-r--r-- | awklib/eg/prog/cut.awk | 2 | ||||
-rw-r--r-- | awklib/eg/prog/wc.awk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/awklib/eg/prog/cut.awk b/awklib/eg/prog/cut.awk index fd77910d..1ec89288 100644 --- a/awklib/eg/prog/cut.awk +++ b/awklib/eg/prog/cut.awk @@ -15,7 +15,7 @@ function usage() { print("usage: cut [-f list] [-d c] [-s] [files...]") > "/dev/stderr" - print("usage: cut [-c list] [files...]") > "/dev/stderr" + print(" cut [-c list] [files...]") > "/dev/stderr" exit 1 } BEGIN { diff --git a/awklib/eg/prog/wc.awk b/awklib/eg/prog/wc.awk index 46804737..1177f93f 100644 --- a/awklib/eg/prog/wc.awk +++ b/awklib/eg/prog/wc.awk @@ -1,4 +1,4 @@ -# wc.awk --- count lines, words, characters +# wc.awk --- count lines, words, characters, bytes # # Arnold Robbins, arnold@skeeve.com, Public Domain # May 1993 |