Fix up copyright msgs. Bump version to 0.49 in preparation for
[platform/upstream/busybox.git] / sed.c
1 /*
2  * sed.c - very minimalist version of sed
3  *
4  * Copyright (C) 1999,2000,2001 by Lineo, inc.
5  * Written by Mark Whitley <markw@lineo.com>, <markw@codepoet.org>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20  *
21  */
22
23 /*
24         Supported features and commands in this version of sed:
25
26          - comments ('#')
27          - address matching: num|/matchstr/[,num|/matchstr/|$]command
28          - commands: (p)rint, (d)elete, (s)ubstitue (with g & I flags)
29          - edit commands: (a)ppend, (i)nsert, (c)hange
30          - backreferences in substitution expressions (\1, \2...\9)
31          
32          (Note: Specifying an address (range) to match is *optional*; commands
33          default to the whole pattern space if no specific address match was
34          requested.)
35
36         Unsupported features:
37
38          - transliteration (y/source-chars/dest-chars/) (use 'tr')
39          - no pattern space hold space storing / swapping (x, etc.)
40          - no labels / branching (: label, b, t, and friends)
41          - and lots, lots more.
42 */
43
44 #include <stdio.h>
45 #include <unistd.h> /* for getopt() */
46 #include <regex.h>
47 #include <string.h> /* for strdup() */
48 #include <errno.h>
49 #include <ctype.h> /* for isspace() */
50 #include <stdlib.h>
51 #include "busybox.h"
52
53 /* externs */
54 extern void xregcomp(regex_t *preg, const char *regex, int cflags);
55 extern int optind; /* in unistd.h */
56 extern char *optarg; /* ditto */
57
58 /* options */
59 static int be_quiet = 0;
60
61
62 struct sed_cmd {
63
64
65         /* GENERAL FIELDS */
66         char delimiter;     /* The delimiter used to separate regexps */
67
68         /* address storage */
69         int beg_line; /* 'sed 1p'   0 == no begining line, apply commands to all lines */
70         int end_line; /* 'sed 1,3p' 0 == no end line, use only beginning. -1 == $ */
71         regex_t *beg_match; /* sed -e '/match/cmd' */
72         regex_t *end_match; /* sed -e '/match/,/end_match/cmd' */
73
74         /* the command */
75         char cmd; /* p,d,s (add more at your leisure :-) */
76
77
78         /* SUBSTITUTION COMMAND SPECIFIC FIELDS */
79
80         /* sed -e 's/sub_match/replace/' */
81         regex_t *sub_match;
82         char *replace;
83         unsigned int num_backrefs:4; /* how many back references (\1..\9) */
84                         /* Note:  GNU/POSIX sed does not save more than nine backrefs, so
85                          * we only use 4 bits to hold the number */
86         unsigned int sub_g:1; /* sed -e 's/foo/bar/g' (global) */
87         unsigned int sub_p:2; /* sed -e 's/foo/bar/p' (print substitution) */
88
89
90         /* EDIT COMMAND (a,i,c) SPEICIFIC FIELDS */
91
92         char *editline;
93 };
94
95 /* globals */
96 static struct sed_cmd *sed_cmds = NULL; /* growable arrary holding a sequence of sed cmds */
97 static int ncmds = 0; /* number of sed commands */
98
99 /*static char *cur_file = NULL;*/ /* file currently being processed XXX: do I need this? */
100
101 #ifdef BB_FEATURE_CLEAN_UP
102 static void destroy_cmd_strs()
103 {
104         if (sed_cmds == NULL)
105                 return;
106
107         /* destroy all the elements in the array */
108         while (--ncmds >= 0) {
109
110                 if (sed_cmds[ncmds].beg_match) {
111                         regfree(sed_cmds[ncmds].beg_match);
112                         free(sed_cmds[ncmds].beg_match);
113                 }
114                 if (sed_cmds[ncmds].end_match) {
115                         regfree(sed_cmds[ncmds].end_match);
116                         free(sed_cmds[ncmds].end_match);
117                 }
118                 if (sed_cmds[ncmds].sub_match) {
119                         regfree(sed_cmds[ncmds].sub_match);
120                         free(sed_cmds[ncmds].sub_match);
121                 }
122                 if (sed_cmds[ncmds].replace)
123                         free(sed_cmds[ncmds].replace);
124         }
125
126         /* destroy the array */
127         free(sed_cmds);
128         sed_cmds = NULL;
129 }
130 #endif
131
132
133 /*
134  * index_of_next_unescaped_regexp_delim - walks left to right through a string
135  * beginning at a specified index and returns the index of the next regular
136  * expression delimiter (typically a forward * slash ('/')) not preceeded by 
137  * a backslash ('\').
138  */
139 static int index_of_next_unescaped_regexp_delim(struct sed_cmd *sed_cmd, const char *str, int idx)
140 {
141         for ( ; str[idx]; idx++) {
142                 if (str[idx] == sed_cmd->delimiter && str[idx-1] != '\\')
143                         return idx;
144         }
145
146         /* if we make it to here, we've hit the end of the string */
147         return -1;
148 }
149
150 /*
151  * returns the index in the string just past where the address ends.
152  */
153 static int get_address(struct sed_cmd *sed_cmd, const char *str, int *line, regex_t **regex)
154 {
155         char *my_str = strdup(str);
156         int idx = 0;
157
158         if (isdigit(my_str[idx])) {
159                 do {
160                         idx++;
161                 } while (isdigit(my_str[idx]));
162                 my_str[idx] = 0;
163                 *line = atoi(my_str);
164         }
165         else if (my_str[idx] == '$') {
166                 *line = -1;
167                 idx++;
168         }
169         else if (my_str[idx] == '/') {
170                 idx = index_of_next_unescaped_regexp_delim(sed_cmd, my_str, ++idx);
171                 if (idx == -1)
172                         error_msg_and_die("unterminated match expression\n");
173                 my_str[idx] = '\0';
174                 *regex = (regex_t *)xmalloc(sizeof(regex_t));
175                 xregcomp(*regex, my_str+1, 0);
176                 idx++; /* so it points to the next character after the last '/' */
177         }
178         else {
179                 error_msg("get_address: no address found in string\n"
180                                 "\t(you probably didn't check the string you passed me)\n");
181                 idx = -1;
182         }
183
184         free(my_str);
185         return idx;
186 }
187
188 static char *strdup_substr(const char *str, int start, int end)
189 {
190         int size = end - start + 1;
191         char *newstr = xmalloc(size);
192         memcpy(newstr, str+start, size-1);
193         newstr[size-1] = '\0';
194         return newstr;
195 }
196
197 static int parse_subst_cmd(struct sed_cmd *sed_cmd, const char *substr)
198 {
199         int oldidx, cflags = REG_NEWLINE;
200         char *match;
201         int idx = 0;
202         int j;
203
204         /*
205          * the string that gets passed to this function should look like this:
206          *    s/match/replace/gIp
207          *    ||     |        |||
208          *    mandatory       optional
209          *
210          *    (all three of the '/' slashes are mandatory)
211          */
212
213         /* verify that the 's' is followed by something.  That something
214          * (typically a 'slash') is now our regexp delimiter... */
215         if (!substr[++idx])
216                 error_msg_and_die("bad format in substitution expression\n");
217         else
218             sed_cmd->delimiter=substr[idx];
219
220         /* save the match string */
221         oldidx = idx+1;
222         idx = index_of_next_unescaped_regexp_delim(sed_cmd, substr, ++idx);
223         if (idx == -1)
224                 error_msg_and_die("bad format in substitution expression\n");
225         match = strdup_substr(substr, oldidx, idx);
226
227         /* determine the number of back references in the match string */
228         /* Note: we compute this here rather than in the do_subst_command()
229          * function to save processor time, at the expense of a little more memory
230          * (4 bits) per sed_cmd */
231         
232         /* sed_cmd->num_backrefs = 0; */ /* XXX: not needed? --apparently not */ 
233         for (j = 0; match[j]; j++) {
234                 /* GNU/POSIX sed does not save more than nine backrefs */
235                 if (match[j] == '\\' && match[j+1] == '(' && sed_cmd->num_backrefs <= 9)
236                         sed_cmd->num_backrefs++;
237         }
238
239         /* save the replacement string */
240         oldidx = idx+1;
241         idx = index_of_next_unescaped_regexp_delim(sed_cmd, substr, ++idx);
242         if (idx == -1)
243                 error_msg_and_die("bad format in substitution expression\n");
244         sed_cmd->replace = strdup_substr(substr, oldidx, idx);
245
246         /* process the flags */
247         while (substr[++idx]) {
248                 switch (substr[idx]) {
249                         case 'g':
250                                 sed_cmd->sub_g = 1;
251                                 break;
252                         case 'I':
253                                 cflags |= REG_ICASE;
254                                 break;
255                         case 'p':
256                                 sed_cmd->sub_p = 1;
257                                 break;
258                         default:
259                                 /* any whitespace or semicolon trailing after a s/// is ok */
260                                 if (strchr("; \t\v\n\r", substr[idx]))
261                                         goto out;
262                                 /* else */
263                                 error_msg_and_die("bad option in substitution expression\n");
264                 }
265         }
266
267 out:    
268         /* compile the match string into a regex */
269         sed_cmd->sub_match = (regex_t *)xmalloc(sizeof(regex_t));
270         xregcomp(sed_cmd->sub_match, match, cflags);
271         free(match);
272
273         return idx;
274 }
275
276 static int parse_edit_cmd(struct sed_cmd *sed_cmd, const char *editstr)
277 {
278         int idx = 0;
279         int slashes_eaten = 0;
280         char *ptr; /* shorthand */
281
282         /*
283          * the string that gets passed to this function should look like this:
284          *
285          *    need one of these 
286          *    |
287          *    |    this backslash (immediately following the edit command) is mandatory
288          *    |    |
289          *    [aic]\
290          *    TEXT1\
291          *    TEXT2\
292          *    TEXTN
293          *
294          * as soon as we hit a TEXT line that has no trailing '\', we're done.
295          * this means a command like:
296          *
297          * i\
298          * INSERTME
299          *
300          * is a-ok.
301          *
302          */
303
304         if (editstr[1] != '\\' && (editstr[2] != '\n' || editstr[2] != '\r'))
305                 error_msg_and_die("bad format in edit expression\n");
306
307         /* store the edit line text */
308         /* make editline big enough to accomodate the extra '\n' we will tack on
309          * to the end */
310         sed_cmd->editline = xmalloc(strlen(&editstr[3]) + 2);
311         strcpy(sed_cmd->editline, &editstr[3]);
312         ptr = sed_cmd->editline;
313
314         /* now we need to go through * and: s/\\[\r\n]$/\n/g on the edit line */
315         while (ptr[idx]) {
316                 while (ptr[idx] != '\\' && (ptr[idx+1] != '\n' || ptr[idx+1] != '\r')) {
317                         idx++;
318                         if (!ptr[idx]) {
319                                 goto out;
320                         }
321                 }
322                 /* move the newline over the '\' before it (effectively eats the '\') */
323                 memmove(&ptr[idx], &ptr[idx+1], strlen(&ptr[idx+1]));
324                 ptr[strlen(ptr)-1] = 0;
325                 slashes_eaten++;
326                 /* substitue \r for \n if needed */
327                 if (ptr[idx] == '\r')
328                         ptr[idx] = '\n';
329         }
330
331 out:
332         ptr[idx] = '\n';
333         ptr[idx+1] = 0;
334
335         /* this accounts for discrepancies between the modified string and the
336          * original string passed in to this function */
337         idx += slashes_eaten;
338
339         /* this accounts for the fact that A) we started at index 3, not at index
340          * 0  and B) that we added an extra '\n' at the end (if you think the next
341          * line should read 'idx += 4' remember, arrays are zero-based) */
342
343         idx += 3;
344
345         return idx;
346 }
347
348 static char *parse_cmd_str(struct sed_cmd *sed_cmd, const char *cmdstr)
349 {
350         int idx = 0;
351
352         /* parse the command
353          * format is: [addr][,addr]cmd
354          *            |----||-----||-|
355          *            part1 part2  part3
356          */
357
358
359         /* first part (if present) is an address: either a number or a /regex/ */
360         if (isdigit(cmdstr[idx]) || cmdstr[idx] == '/')
361                 idx = get_address(sed_cmd, cmdstr, &sed_cmd->beg_line, &sed_cmd->beg_match);
362
363         /* second part (if present) will begin with a comma */
364         if (cmdstr[idx] == ',')
365                 idx += get_address(sed_cmd, &cmdstr[++idx], &sed_cmd->end_line, &sed_cmd->end_match);
366
367         /* last part (mandatory) will be a command */
368         if (cmdstr[idx] == '\0')
369                 error_msg_and_die("missing command\n");
370         if (!strchr("pdsaic", cmdstr[idx])) /* <-- XXX add new commands here */
371                 error_msg_and_die("invalid command\n");
372         sed_cmd->cmd = cmdstr[idx];
373
374         /* special-case handling for (s)ubstitution */
375         if (sed_cmd->cmd == 's') {
376                 idx += parse_subst_cmd(sed_cmd, &cmdstr[idx]);
377         }
378         /* special-case handling for (a)ppend, (i)nsert, and (c)hange */
379         else if (strchr("aic", cmdstr[idx])) {
380                 if (sed_cmd->end_line || sed_cmd->end_match)
381                         error_msg_and_die("only a beginning address can be specified for edit commands\n");
382                 idx += parse_edit_cmd(sed_cmd, &cmdstr[idx]);
383         }
384         /* if it was a single-letter command (such as 'p' or 'd') we need to
385          * increment the index past that command */
386         else
387                 idx++;
388
389         /* give back whatever's left over */
390         return (char *)&cmdstr[idx];
391 }
392
393 static void add_cmd_str(const char *cmdstr)
394 {
395         char *mystr = (char *)cmdstr;
396
397         do {
398
399                 /* trim leading whitespace and semicolons */
400                 memmove(mystr, &mystr[strspn(mystr, "; \n\r\t\v")], strlen(mystr));
401                 /* if we ate the whole thing, that means there was just trailing
402                  * whitespace or a final / no-op semicolon. either way, get out */
403                 if (strlen(mystr) == 0)
404                         return;
405                 /* if this is a comment, jump past it and keep going */
406                 if (mystr[0] == '#') {
407                         mystr = strpbrk(mystr, ";\n\r");
408                         continue;
409                 }
410                 /* grow the array */
411                 sed_cmds = xrealloc(sed_cmds, sizeof(struct sed_cmd) * (++ncmds));
412                 /* zero new element */
413                 memset(&sed_cmds[ncmds-1], 0, sizeof(struct sed_cmd));
414                 /* load command string into new array element, get remainder */
415                 mystr = parse_cmd_str(&sed_cmds[ncmds-1], mystr);
416
417         } while (mystr && strlen(mystr));
418 }
419
420
421 static void load_cmd_file(char *filename)
422 {
423         FILE *cmdfile;
424         char *line;
425         char *nextline;
426
427         cmdfile = xfopen(filename, "r");
428
429         while ((line = get_line_from_file(cmdfile)) != NULL) {
430                 /* if a line ends with '\' it needs the next line appended to it */
431                 while (line[strlen(line)-2] == '\\' &&
432                                 (nextline = get_line_from_file(cmdfile)) != NULL) {
433                         line = xrealloc(line, strlen(line) + strlen(nextline) + 1);
434                         strcat(line, nextline);
435                         free(nextline);
436                 }
437                 /* eat trailing newline (if any) --if I don't do this, edit commands
438                  * (aic) will print an extra newline */
439                 if (line[strlen(line)-1] == '\n')
440                         line[strlen(line)-1] = 0;
441                 add_cmd_str(line);
442                 free(line);
443         }
444 }
445
446 static void print_subst_w_backrefs(const char *line, const char *replace, regmatch_t *regmatch)
447 {
448         int i;
449
450         /* go through the replacement string */
451         for (i = 0; replace[i]; i++) {
452                 /* if we find a backreference (\1, \2, etc.) print the backref'ed * text */
453                 if (replace[i] == '\\' && isdigit(replace[i+1])) {
454                         int j;
455                         char tmpstr[2];
456                         int backref;
457                         ++i; /* i now indexes the backref number, instead of the leading slash */
458                         tmpstr[0] = replace[i];
459                         tmpstr[1] = 0;
460                         backref = atoi(tmpstr);
461                         /* print out the text held in regmatch[backref] */
462                         for (j = regmatch[backref].rm_so; j < regmatch[backref].rm_eo; j++)
463                                 fputc(line[j], stdout);
464                 }
465
466                 /* if we find a backslash escaped character, print the character */
467                 else if (replace[i] == '\\') {
468                         ++i;
469                         fputc(replace[i], stdout);
470                 }
471
472                 /* if we find an unescaped '&' print out the whole matched text.
473                  * fortunately, regmatch[0] contains the indicies to the whole matched
474                  * expression (kinda seems like it was designed for just such a
475                  * purpose...) */
476                 else if (replace[i] == '&' && replace[i-1] != '\\') {
477                         int j;
478                         for (j = regmatch[0].rm_so; j < regmatch[0].rm_eo; j++)
479                                 fputc(line[j], stdout);
480                 }
481                 /* nothing special, just print this char of the replacement string to stdout */
482                 else
483                         fputc(replace[i], stdout);
484         }
485 }
486
487 static int do_subst_command(const struct sed_cmd *sed_cmd, const char *line)
488 {
489         char *hackline = (char *)line;
490         int altered = 0;
491         regmatch_t *regmatch = NULL;
492
493         /* we only proceed if the substitution 'search' expression matches */
494         if (regexec(sed_cmd->sub_match, line, 0, NULL, 0) == REG_NOMATCH)
495                 return 0;
496
497         /* whaddaya know, it matched. get the number of back references */
498         regmatch = xmalloc(sizeof(regmatch_t) * (sed_cmd->num_backrefs+1));
499
500         /* and now, as long as we've got a line to try matching and if we can match
501          * the search string, we make substitutions */
502         while (*hackline && (regexec(sed_cmd->sub_match, hackline,
503                                         sed_cmd->num_backrefs+1, regmatch, 0) == 0) ) {
504                 int i;
505
506                 /* print everything before the match */
507                 for (i = 0; i < regmatch[0].rm_so; i++)
508                         fputc(hackline[i], stdout);
509
510                 /* then print the substitution string */
511                 print_subst_w_backrefs(hackline, sed_cmd->replace, regmatch);
512
513                 /* advance past the match */
514                 hackline += regmatch[0].rm_eo;
515                 /* flag that something has changed */
516                 altered++;
517
518                 /* if we're not doing this globally, get out now */
519                 if (!sed_cmd->sub_g)
520                         break;
521         }
522
523         /* if there's anything left of the line, print it */
524         if (*hackline)
525                 fputs(hackline, stdout);
526
527         /* cleanup */
528         free(regmatch);
529
530         return altered;
531 }
532
533 static int do_sed_command(const struct sed_cmd *sed_cmd, const char *line) 
534 {
535         int altered = 0;
536
537         switch (sed_cmd->cmd) {
538
539                 case 'p':
540                         fputs(line, stdout);
541                         break;
542
543                 case 'd':
544                         altered++;
545                         break;
546
547                 case 's':
548
549                         /*
550                          * Some special cases for 's' printing to make it compliant with
551                          * GNU sed printing behavior (aka "The -n | s///p Matrix"):
552                          *
553                          *    -n ONLY = never print anything regardless of any successful
554                          *    substitution
555                          *
556                          *    s///p ONLY = always print successful substitutions, even if
557                          *    the line is going to be printed anyway (line will be printed
558                          *    twice).
559                          *
560                          *    -n AND s///p = print ONLY a successful substitution ONE TIME;
561                          *    no other lines are printed - this is the reason why the 'p'
562                          *    flag exists in the first place.
563                          */
564
565                         /* if the user specified that they didn't want anything printed (i.e. a -n
566                          * flag and no 'p' flag after the s///), then there's really no point doing
567                          * anything here. */
568                         if (be_quiet && !sed_cmd->sub_p)
569                                 break;
570
571                         /* we print the line once, unless we were told to be quiet */
572                         if (!be_quiet)
573                                 altered = do_subst_command(sed_cmd, line);
574
575                         /* we also print the line if we were given the 'p' flag
576                          * (this is quite possibly the second printing) */
577                         if (sed_cmd->sub_p)
578                                 altered = do_subst_command(sed_cmd, line);
579
580                         break;
581
582                 case 'a':
583                         fputs(line, stdout);
584                         fputs(sed_cmd->editline, stdout);
585                         altered++;
586                         break;
587
588                 case 'i':
589                         fputs(sed_cmd->editline, stdout);
590                         break;
591
592                 case 'c':
593                         fputs(sed_cmd->editline, stdout);
594                         altered++;
595                         break;
596         }
597
598         return altered;
599 }
600
601 static void process_file(FILE *file)
602 {
603         char *line = NULL;
604         static int linenum = 0; /* GNU sed does not restart counting lines at EOF */
605         unsigned int still_in_range = 0;
606         int line_altered;
607         int i;
608
609         /* go through every line in the file */
610         while ((line = get_line_from_file(file)) != NULL) {
611
612                 linenum++;
613                 line_altered = 0;
614
615                 /* for every line, go through all the commands */
616                 for (i = 0; i < ncmds; i++) {
617
618                         /* are we acting on a range of matched lines? */
619                         if (sed_cmds[i].beg_match && sed_cmds[i].end_match) {
620                                 if (still_in_range || regexec(sed_cmds[i].beg_match, line, 0, NULL, 0) == 0) {
621                                         line_altered += do_sed_command(&sed_cmds[i], line);
622                                         still_in_range = 1; 
623                                         if (regexec(sed_cmds[i].end_match, line, 0, NULL, 0) == 0)
624                                                 still_in_range = 0;
625                                 }
626                         }
627
628                         /* are we trying to match a single line? */
629                         else if (sed_cmds[i].beg_match) {
630                                 if (regexec(sed_cmds[i].beg_match, line, 0, NULL, 0) == 0)
631                                         line_altered += do_sed_command(&sed_cmds[i], line);
632                         }
633
634                         /* are we acting on a range of line numbers? */
635                         else if (sed_cmds[i].beg_line > 0 && sed_cmds[i].end_line != 0) {
636                                 if (linenum >= sed_cmds[i].beg_line &&
637                                                 (sed_cmds[i].end_line == -1 || linenum <= sed_cmds[i].end_line))
638                                         line_altered += do_sed_command(&sed_cmds[i], line);
639                         }
640
641                         /* are we acting on a specified line number */
642                         else if (sed_cmds[i].beg_line > 0) {
643                                 if (linenum == sed_cmds[i].beg_line)
644                                         line_altered += do_sed_command(&sed_cmds[i], line);
645                         }
646
647                         /* not acting on matches or line numbers. act on every line */
648                         else 
649                                 line_altered += do_sed_command(&sed_cmds[i], line);
650
651                 }
652
653                 /* we will print the line unless we were told to be quiet or if the
654                  * line was altered (via a 'd'elete or 's'ubstitution), in which case
655                  * the altered line was already printed */
656                 if (!be_quiet && !line_altered)
657                         fputs(line, stdout);
658
659                 free(line);
660         }
661 }
662
663 extern int sed_main(int argc, char **argv)
664 {
665         int opt;
666
667 #ifdef BB_FEATURE_CLEAN_UP
668         /* destroy command strings on exit */
669         if (atexit(destroy_cmd_strs) == -1)
670                 perror_msg_and_die("atexit");
671 #endif
672
673         /* do normal option parsing */
674         while ((opt = getopt(argc, argv, "hne:f:")) > 0) {
675                 switch (opt) {
676                         case 'h':
677                                 usage(sed_usage);
678                                 break;
679                         case 'n':
680                                 be_quiet++;
681                                 break;
682                         case 'e':
683                                 add_cmd_str(optarg);
684                                 break;
685                         case 'f': 
686                                 load_cmd_file(optarg);
687                                 break;
688                 }
689         }
690
691         /* if we didn't get a pattern from a -e and no command file was specified,
692          * argv[optind] should be the pattern. no pattern, no worky */
693         if (ncmds == 0) {
694                 if (argv[optind] == NULL)
695                         usage(sed_usage);
696                 else {
697                         add_cmd_str(argv[optind]);
698                         optind++;
699                 }
700         }
701
702
703         /* argv[(optind)..(argc-1)] should be names of file to process. If no
704          * files were specified or '-' was specified, take input from stdin.
705          * Otherwise, we process all the files specified. */
706         if (argv[optind] == NULL || (strcmp(argv[optind], "-") == 0)) {
707                 process_file(stdin);
708         }
709         else {
710                 int i;
711                 FILE *file;
712                 for (i = optind; i < argc; i++) {
713                         file = fopen(argv[i], "r");
714                         if (file == NULL) {
715                                 perror_msg("%s", argv[i]);
716                         } else {
717                                 process_file(file);
718                                 fclose(file);
719                         }
720                 }
721         }
722         
723         return 0;
724 }