aboutsummaryrefslogtreecommitdiff
path: root/wc.c
diff options
context:
space:
mode:
authorerik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-01-23 18:19:02 +0000
committererik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-01-23 18:19:02 +0000
commit56c31f14e31948366da595479dd9fc6f32cbbb5f (patch)
tree2728cbb296484026cb657f92f78e1bb0806ba6f4 /wc.c
parentdf6986a40984363be0005bcb8828f9e2ac222f9e (diff)
downloadbusybox-w32-56c31f14e31948366da595479dd9fc6f32cbbb5f.tar.gz
busybox-w32-56c31f14e31948366da595479dd9fc6f32cbbb5f.tar.bz2
busybox-w32-56c31f14e31948366da595479dd9fc6f32cbbb5f.zip
* added (and documented) "-n" option for head -
contributed Friedrich Vedder <fwv@myrtle.lahn.de> * Cleanup for a number of usage messages -- also contributed Friedrich Vedder <fwv@myrtle.lahn.de> -Erik git-svn-id: svn://busybox.net/trunk/busybox@336 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'wc.c')
-rw-r--r--wc.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/wc.c b/wc.c
index a1e2fca56..e69f0d899 100644
--- a/wc.c
+++ b/wc.c
@@ -28,7 +28,6 @@ static const char wc_usage[] = "wc [OPTION]... [FILE]...\n\n"
28"\t-c\tprint the byte counts\n" 28"\t-c\tprint the byte counts\n"
29"\t-l\tprint the newline counts\n" 29"\t-l\tprint the newline counts\n"
30"\t-L\tprint the length of the longest line\n" 30"\t-L\tprint the length of the longest line\n"
31"\t-L\tprint the length of the longest line\n"
32"\t-w\tprint the word counts\n"; 31"\t-w\tprint the word counts\n";
33 32
34static int total_lines, total_words, total_chars, max_length; 33static int total_lines, total_words, total_chars, max_length;