diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-02-02 03:44:08 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-02-02 03:44:08 +0000 |
commit | 3332e23f94eb523b5752b2fa0610c589225b4a06 (patch) | |
tree | a3ee2c2c5e033392470742bc12a34eb3f9dc7ff3 /usr.bin/wc | |
parent | def81e297d7b08ebfeb02702c14a2d7d5674b7c0 (diff) |
o Some minor updates from lite2 (mostly in the man page)
o Add support for large files by using quads as counters
Diffstat (limited to 'usr.bin/wc')
-rw-r--r-- | usr.bin/wc/wc.1 | 54 | ||||
-rw-r--r-- | usr.bin/wc/wc.c | 122 |
2 files changed, 98 insertions, 78 deletions
diff --git a/usr.bin/wc/wc.1 b/usr.bin/wc/wc.1 index f5ef5d28720..53f905d04f8 100644 --- a/usr.bin/wc/wc.1 +++ b/usr.bin/wc/wc.1 @@ -1,6 +1,7 @@ -.\" $OpenBSD: wc.1,v 1.4 1998/11/04 22:36:41 aaron Exp $ -.\" Copyright (c) 1991 Regents of the University of California. -.\" All rights reserved. +.\" $OpenBSD: wc.1,v 1.5 1999/02/02 03:44:07 millert Exp $ +.\" +.\" Copyright (c) 1991, 1993 +.\" The Regents of the University of California. All rights reserved. .\" .\" This code is derived from software contributed to Berkeley by .\" the Institute of Electrical and Electronics Engineers, Inc. @@ -33,9 +34,9 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" from: @(#)wc.1 6.4 (Berkeley) 6/27/91 +.\" from: @(#)wc.1 8.2 (Berkeley) 4/19/94 .\" -.Dd June 27, 1991 +.Dd April 19, 1994 .Dt WC 1 .Os .Sh NAME @@ -54,11 +55,12 @@ default, writes the number of lines, words, and bytes contained in each input file to the standard output. If more than one input file is specified, a line of cumulative count(s) for all named files is output on a -separate line -following the last file count. +separate line following the last file count. .Nm wc -considers a word to be a maximal string of -characters delimited by white space. +considers a word to be a maximal string of characters delimited by white +space. White space characters are the set of characters for which the +.Xr isspace 3 +function returns true. .Pp The following options are available: .Bl -tag -width Ds @@ -78,13 +80,14 @@ is written to the standard output. .Pp When an option is specified, .Nm wc -only -reports the -information requested by that option. The -default action is equivalent to all the -flags +only reports the information requested by that option. +The default action is equivalent to the flags .Fl clw -having been specified. +having been specified. The +.Fl c +and +.Fl m +options are mutually exclusive. .Pp The following operands are available: .Bl -tag -width Ds @@ -92,9 +95,8 @@ The following operands are available: A pathname of an input file. .El .Pp -If no file names -are specified, the standard input is used and -a file name is not output. The resulting output is one +If no file names are specified, the standard input is used +and a file name is not output. The resulting output is one line of the requested count(s) with the cumulative sum of all files read in via standard input. .Pp @@ -110,6 +112,22 @@ by spaces. The .Nm wc utility exits 0 on success or >0 if an error occurred. +.Sh SEE ALSO +.Xr isspace 3 +.Sh COMPATIBILITY +Historically, the +.Nm wc +utility was documented to define a word as a ``maximal string of +characters delimited by <space>, <tab> or <newline> characters''. +The implementation, however, didn't handle non-printing characters +correctly so that `` ^D^E '' counted as 6 spaces, while ``foo^D^Ebar'' +counted as 8 characters. +4BSD systems after 4.3BSD modified the implementation to be consistent +with the documentation. +This implementation defines a ``word'' in terms of the +.Xr isspace 3 +function, as required by +.St -p1003.2-92 . .Sh STANDARDS The .Nm wc diff --git a/usr.bin/wc/wc.c b/usr.bin/wc/wc.c index 974227949b9..bedbfc85490 100644 --- a/usr.bin/wc/wc.c +++ b/usr.bin/wc/wc.c @@ -1,8 +1,8 @@ -/* $OpenBSD: wc.c,v 1.2 1996/06/26 05:42:50 deraadt Exp $ */ +/* $OpenBSD: wc.c,v 1.3 1999/02/02 03:44:07 millert Exp $ */ /* - * Copyright (c) 1980, 1987 Regents of the University of California. - * All rights reserved. + * Copyright (c) 1980, 1987, 1991, 1993 + * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -34,42 +34,43 @@ */ #ifndef lint -char copyright[] = -"@(#) Copyright (c) 1980, 1987 Regents of the University of California.\n\ - All rights reserved.\n"; +static char copyright[] = +"@(#) Copyright (c) 1980, 1987, 1991, 1993\n\ + The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ #ifndef lint -/*static char sccsid[] = "from: @(#)wc.c 5.7 (Berkeley) 3/2/91";*/ -static char rcsid[] = "$OpenBSD: wc.c,v 1.2 1996/06/26 05:42:50 deraadt Exp $"; +#if 0 +static char sccsid[] = "@(#)wc.c 8.2 (Berkeley) 5/2/95"; +#else +static char rcsid[] = "$OpenBSD: wc.c,v 1.3 1999/02/02 03:44:07 millert Exp $"; +#endif #endif /* not lint */ -/* wc line, word and char count */ - #include <stdio.h> #include <stdlib.h> #include <string.h> #include <locale.h> #include <ctype.h> -#include <errno.h> +#include <err.h> #include <sys/param.h> #include <sys/stat.h> #include <sys/file.h> #include <unistd.h> -#include <err.h> -static void print_counts(); -static void cnt(); -static long tlinect, twordct, tcharct; -static int doline, doword, dochar; -static int rval = 0; +int64_t tlinect, twordct, tcharct; +int doline, doword, dochar; +int rval; +extern char *__progname; + +void print_counts __P((int64_t, int64_t, int64_t, char *)); +void cnt __P((char *)); int main(argc, argv) int argc; - char **argv; + char *argv[]; { - extern int optind; register int ch; setlocale(LC_ALL, ""); @@ -88,7 +89,9 @@ main(argc, argv) break; case '?': default: - fprintf(stderr, "usage: wc [-c | -m] [-lw] [file ...]\n"); + (void)fprintf(stderr, + "usage: %s [-c | -m] [-lw] [file ...]\n", + __progname); exit(1); } argv += optind; @@ -99,9 +102,8 @@ main(argc, argv) * if you don't get any arguments, you have to turn them * all on. */ - if (!doline && !doword && !dochar) { + if (!doline && !doword && !dochar) doline = doword = dochar = 1; - } if (!*argv) { cnt((char *)NULL); @@ -112,23 +114,21 @@ main(argc, argv) cnt(*argv); } while(*++argv); - if (dototal) { - print_counts (tlinect, twordct, tcharct, "total"); - } + if (dototal) + print_counts(tlinect, twordct, tcharct, "total"); } exit(rval); } - -static void +void cnt(file) char *file; { register u_char *C; register short gotsp; register int len; - register long linect, wordct, charct; + register int64_t linect, wordct, charct; struct stat sbuf; int fd; u_char buf[MAXBSIZE]; @@ -136,7 +136,7 @@ cnt(file) linect = wordct = charct = 0; if (file) { if ((fd = open(file, O_RDONLY, 0)) < 0) { - warn ("%s", file); + warn("%s", file); rval = 1; return; } @@ -146,64 +146,65 @@ cnt(file) if (!doword) { /* - * line counting is split out because it's a lot + * Line counting is split out because it's a lot * faster to get lines than to get words, since * the word count requires some logic. */ if (doline) { - while((len = read(fd, buf, MAXBSIZE)) > 0) { + while ((len = read(fd, buf, MAXBSIZE)) > 0) { charct += len; for (C = buf; len--; ++C) if (*C == '\n') ++linect; } if (len == -1) { - warn ("%s", file); + warn("%s", file); rval = 1; } } - /* - * if all we need is the number of characters and + * If all we need is the number of characters and * it's a directory or a regular or linked file, just * stat the puppy. We avoid testing for it not being * a special device in case someone adds a new type * of inode. */ else if (dochar) { - int ifmt; + mode_t ifmt; if (fstat(fd, &sbuf)) { - warn ("%s", file); + warn("%s", file); rval = 1; } else { ifmt = sbuf.st_mode & S_IFMT; if (ifmt == S_IFREG || ifmt == S_IFLNK - || ifmt == S_IFDIR) { + || ifmt == S_IFDIR) { charct = sbuf.st_size; } else { - while((len = read(fd, buf, MAXBSIZE)) > 0) + while ((len = read(fd, buf, MAXBSIZE)) > 0) charct += len; if (len == -1) { - warn ("%s", file); + warn("%s", file); rval = 1; } } } } - } - else - { - /* do it the hard way... */ + } else { + /* Do it the hard way... */ gotsp = 1; while ((len = read(fd, buf, MAXBSIZE)) > 0) { + /* + * This loses in the presence of multi-byte characters. + * To do it right would require a function to return a + * character while knowing how many bytes it consumed. + */ charct += len; for (C = buf; len--; ++C) { if (isspace (*C)) { gotsp = 1; - if (*C == '\n') { + if (*C == '\n') ++linect; - } } else { /* * This line implements the POSIX @@ -221,40 +222,41 @@ cnt(file) } } if (len == -1) { - warn ("%s", file); + warn("%s", file); rval = 1; } } - print_counts (linect, wordct, charct, file ? file : ""); + print_counts(linect, wordct, charct, file ? file : ""); - /* don't bother checkint doline, doword, or dochar --- speeds - up the common case */ + /* + * Don't bother checking doline, doword, or dochar -- speeds + * up the common case + */ tlinect += linect; twordct += wordct; tcharct += charct; - if (close(fd)) { - warn ("%s", file); + if (close(fd) != 0) { + warn("%s", file); rval = 1; } } - void -print_counts (lines, words, chars, name) - long lines; - long words; - long chars; +print_counts(lines, words, chars, name) + int64_t lines; + int64_t words; + int64_t chars; char *name; { if (doline) - printf(" %7ld", lines); + (void)printf(" %7qd", (quad_t) lines); if (doword) - printf(" %7ld", words); + (void)printf(" %7qd", (quad_t) words); if (dochar) - printf(" %7ld", chars); + (void)printf(" %7qd", (quad_t) chars); - printf (" %s\n", name); + (void)printf(" %s\n", name); } |