diff options
author | Florian Pritz <bluewind@xinu.at> | 2011-06-24 20:14:40 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2011-06-24 20:14:40 +0200 |
commit | 26c3975f156e74cd52bddfce7e1e654762847d96 (patch) | |
tree | 20c626bdb34278b69ee6e56977a1638da034ae19 | |
parent | ae36f2fad5d60aa4e18c769fedb4d159c23ef6b4 (diff) | |
download | bin-26c3975f156e74cd52bddfce7e1e654762847d96.tar.gz bin-26c3975f156e74cd52bddfce7e1e654762847d96.tar.xz |
long-lines: add defaults to --help
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rwxr-xr-x | long-lines.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/long-lines.pl b/long-lines.pl index dc901ec..3ba4930 100755 --- a/long-lines.pl +++ b/long-lines.pl @@ -10,7 +10,7 @@ getopts("hm:", \%opt); if (@ARGV == 0 || $opt{h}) { print "usage: ", basename($0), " [options] file(s)...\n\n"; print "Options:\n"; - print " -m NUMBER maximum chars tolerated per line\n"; + print " -m NUMBER maximum chars tolerated per line (default: 80)\n"; print " -h this help\n"; exit 0; } |