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