"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 2 | /* |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 3 | * cut.c - minimalist version of cut |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 4 | * |
Eric Andersen | 8ec10a9 | 2001-01-27 09:33:39 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999,2000,2001 by Lineo, inc. |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 6 | * Written by Mark Whitley <markw@codepoet.org> |
Bernhard Reutner-Fischer | 6c4dade | 2008-09-25 12:13:34 +0000 | [diff] [blame] | 7 | * debloated by Bernhard Reutner-Fischer |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 8 | * |
"Robert P. J. Day" | 801ab14 | 2006-07-12 07:56:04 +0000 | [diff] [blame] | 9 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 10 | */ |
| 11 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 12 | #include "libbb.h" |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 13 | |
Denis Vlasenko | 99912ca | 2007-04-10 15:43:37 +0000 | [diff] [blame] | 14 | /* This is a NOEXEC applet. Be very careful! */ |
| 15 | |
| 16 | |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 17 | /* option vars */ |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 18 | static const char optstring[] ALIGN1 = "b:c:f:d:sn"; |
Denis Vlasenko | 3831c91 | 2007-11-23 07:26:15 +0000 | [diff] [blame] | 19 | #define CUT_OPT_BYTE_FLGS (1 << 0) |
| 20 | #define CUT_OPT_CHAR_FLGS (1 << 1) |
| 21 | #define CUT_OPT_FIELDS_FLGS (1 << 2) |
| 22 | #define CUT_OPT_DELIM_FLGS (1 << 3) |
| 23 | #define CUT_OPT_SUPPRESS_FLGS (1 << 4) |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 24 | |
| 25 | struct cut_list { |
| 26 | int startpos; |
| 27 | int endpos; |
| 28 | }; |
| 29 | |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 30 | enum { |
| 31 | BOL = 0, |
| 32 | EOL = INT_MAX, |
| 33 | NON_RANGE = -1 |
| 34 | }; |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 35 | |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 36 | static int cmpfunc(const void *a, const void *b) |
| 37 | { |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 38 | return (((struct cut_list *) a)->startpos - |
| 39 | ((struct cut_list *) b)->startpos); |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 40 | |
| 41 | } |
| 42 | |
Denis Vlasenko | 9e3a540 | 2008-07-22 10:34:46 +0000 | [diff] [blame] | 43 | static void cut_file(FILE *file, char delim, const struct cut_list *cut_lists, unsigned nlists) |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 44 | { |
Denis Vlasenko | 9e3a540 | 2008-07-22 10:34:46 +0000 | [diff] [blame] | 45 | char *line; |
| 46 | unsigned linenum = 0; /* keep these zero-based to be consistent */ |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 47 | |
| 48 | /* go through every line in the file */ |
Denis Vlasenko | 8ee649a | 2008-03-26 20:04:27 +0000 | [diff] [blame] | 49 | while ((line = xmalloc_fgetline(file)) != NULL) { |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 50 | |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 51 | /* set up a list so we can keep track of what's been printed */ |
Denis Vlasenko | 9e3a540 | 2008-07-22 10:34:46 +0000 | [diff] [blame] | 52 | int linelen = strlen(line); |
Denis Vlasenko | 8334db1 | 2008-08-15 21:20:23 +0000 | [diff] [blame] | 53 | char *printed = xzalloc(linelen + 1); |
Denis Vlasenko | 9e3a540 | 2008-07-22 10:34:46 +0000 | [diff] [blame] | 54 | char *orig_line = line; |
| 55 | unsigned cl_pos = 0; |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 56 | int spos; |
| 57 | |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 58 | /* cut based on chars/bytes XXX: only works when sizeof(char) == byte */ |
Denis Vlasenko | 372686b | 2006-10-12 22:42:33 +0000 | [diff] [blame] | 59 | if (option_mask32 & (CUT_OPT_CHAR_FLGS | CUT_OPT_BYTE_FLGS)) { |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 60 | /* print the chars specified in each cut list */ |
| 61 | for (; cl_pos < nlists; cl_pos++) { |
| 62 | spos = cut_lists[cl_pos].startpos; |
Denis Vlasenko | 9e3a540 | 2008-07-22 10:34:46 +0000 | [diff] [blame] | 63 | while (spos < linelen) { |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 64 | if (!printed[spos]) { |
| 65 | printed[spos] = 'X'; |
| 66 | putchar(line[spos]); |
| 67 | } |
| 68 | spos++; |
| 69 | if (spos > cut_lists[cl_pos].endpos |
Denis Vlasenko | 9e3a540 | 2008-07-22 10:34:46 +0000 | [diff] [blame] | 70 | /* NON_RANGE is -1, so if below is true, |
| 71 | * the above was true too (spos is >= 0) */ |
| 72 | /* || cut_lists[cl_pos].endpos == NON_RANGE */ |
| 73 | ) { |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 74 | break; |
Denis Vlasenko | 9e3a540 | 2008-07-22 10:34:46 +0000 | [diff] [blame] | 75 | } |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 76 | } |
| 77 | } |
| 78 | } else if (delim == '\n') { /* cut by lines */ |
| 79 | spos = cut_lists[cl_pos].startpos; |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 80 | |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 81 | /* get out if we have no more lists to process or if the lines |
| 82 | * are lower than what we're interested in */ |
Denis Vlasenko | 77ad97f | 2008-05-13 02:27:31 +0000 | [diff] [blame] | 83 | if (((int)linenum < spos) || (cl_pos >= nlists)) |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 84 | goto next_line; |
| 85 | |
| 86 | /* if the line we're looking for is lower than the one we were |
| 87 | * passed, it means we displayed it already, so move on */ |
Denis Vlasenko | 77ad97f | 2008-05-13 02:27:31 +0000 | [diff] [blame] | 88 | while (spos < (int)linenum) { |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 89 | spos++; |
| 90 | /* go to the next list if we're at the end of this one */ |
| 91 | if (spos > cut_lists[cl_pos].endpos |
Denis Vlasenko | 9e3a540 | 2008-07-22 10:34:46 +0000 | [diff] [blame] | 92 | || cut_lists[cl_pos].endpos == NON_RANGE |
| 93 | ) { |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 94 | cl_pos++; |
| 95 | /* get out if there's no more lists to process */ |
| 96 | if (cl_pos >= nlists) |
| 97 | goto next_line; |
| 98 | spos = cut_lists[cl_pos].startpos; |
| 99 | /* get out if the current line is lower than the one |
| 100 | * we just became interested in */ |
Denis Vlasenko | 77ad97f | 2008-05-13 02:27:31 +0000 | [diff] [blame] | 101 | if ((int)linenum < spos) |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 102 | goto next_line; |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | /* If we made it here, it means we've found the line we're |
| 107 | * looking for, so print it */ |
| 108 | puts(line); |
| 109 | goto next_line; |
| 110 | } else { /* cut by fields */ |
| 111 | int ndelim = -1; /* zero-based / one-based problem */ |
| 112 | int nfields_printed = 0; |
| 113 | char *field = NULL; |
Denys Vlasenko | 043b1e5 | 2009-09-06 12:47:55 +0200 | [diff] [blame] | 114 | char delimiter[2]; |
| 115 | |
| 116 | delimiter[0] = delim; |
| 117 | delimiter[1] = 0; |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 118 | |
| 119 | /* does this line contain any delimiters? */ |
| 120 | if (strchr(line, delim) == NULL) { |
Denis Vlasenko | 372686b | 2006-10-12 22:42:33 +0000 | [diff] [blame] | 121 | if (!(option_mask32 & CUT_OPT_SUPPRESS_FLGS)) |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 122 | puts(line); |
| 123 | goto next_line; |
| 124 | } |
| 125 | |
| 126 | /* process each list on this line, for as long as we've got |
| 127 | * a line to process */ |
| 128 | for (; cl_pos < nlists && line; cl_pos++) { |
| 129 | spos = cut_lists[cl_pos].startpos; |
| 130 | do { |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 131 | /* find the field we're looking for */ |
| 132 | while (line && ndelim < spos) { |
| 133 | field = strsep(&line, delimiter); |
| 134 | ndelim++; |
| 135 | } |
| 136 | |
| 137 | /* we found it, and it hasn't been printed yet */ |
| 138 | if (field && ndelim == spos && !printed[ndelim]) { |
| 139 | /* if this isn't our first time through, we need to |
| 140 | * print the delimiter after the last field that was |
| 141 | * printed */ |
| 142 | if (nfields_printed > 0) |
| 143 | putchar(delim); |
| 144 | fputs(field, stdout); |
| 145 | printed[ndelim] = 'X'; |
| 146 | nfields_printed++; /* shouldn't overflow.. */ |
| 147 | } |
| 148 | |
| 149 | spos++; |
| 150 | |
| 151 | /* keep going as long as we have a line to work with, |
| 152 | * this is a list, and we're not at the end of that |
| 153 | * list */ |
| 154 | } while (spos <= cut_lists[cl_pos].endpos && line |
Denis Vlasenko | 9e3a540 | 2008-07-22 10:34:46 +0000 | [diff] [blame] | 155 | && cut_lists[cl_pos].endpos != NON_RANGE); |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 156 | } |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 157 | } |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 158 | /* if we printed anything at all, we need to finish it with a |
| 159 | * newline cuz we were handed a chomped line */ |
| 160 | putchar('\n'); |
Denis Vlasenko | 372686b | 2006-10-12 22:42:33 +0000 | [diff] [blame] | 161 | next_line: |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 162 | linenum++; |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 163 | free(printed); |
| 164 | free(orig_line); |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 165 | } |
| 166 | } |
| 167 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 168 | int cut_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 169 | int cut_main(int argc UNUSED_PARAM, char **argv) |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 170 | { |
Denis Vlasenko | 9e3a540 | 2008-07-22 10:34:46 +0000 | [diff] [blame] | 171 | /* growable array holding a series of lists */ |
| 172 | struct cut_list *cut_lists = NULL; |
| 173 | unsigned nlists = 0; /* number of elements in above list */ |
Denis Vlasenko | 3831c91 | 2007-11-23 07:26:15 +0000 | [diff] [blame] | 174 | char delim = '\t'; /* delimiter, default is tab */ |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 175 | char *sopt, *ltok; |
Denis Vlasenko | 9e3a540 | 2008-07-22 10:34:46 +0000 | [diff] [blame] | 176 | unsigned opt; |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 177 | |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 178 | opt_complementary = "b--bcf:c--bcf:f--bcf"; |
Denis Vlasenko | 9e3a540 | 2008-07-22 10:34:46 +0000 | [diff] [blame] | 179 | opt = getopt32(argv, optstring, &sopt, &sopt, &sopt, <ok); |
Denis Vlasenko | 9f73944 | 2006-12-16 23:49:13 +0000 | [diff] [blame] | 180 | // argc -= optind; |
| 181 | argv += optind; |
Denis Vlasenko | 9e3a540 | 2008-07-22 10:34:46 +0000 | [diff] [blame] | 182 | if (!(opt & (CUT_OPT_BYTE_FLGS | CUT_OPT_CHAR_FLGS | CUT_OPT_FIELDS_FLGS))) |
Denis Vlasenko | 372686b | 2006-10-12 22:42:33 +0000 | [diff] [blame] | 183 | bb_error_msg_and_die("expected a list of bytes, characters, or fields"); |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 184 | |
Denis Vlasenko | 9e3a540 | 2008-07-22 10:34:46 +0000 | [diff] [blame] | 185 | if (opt & CUT_OPT_DELIM_FLGS) { |
Denis Vlasenko | 3831c91 | 2007-11-23 07:26:15 +0000 | [diff] [blame] | 186 | if (ltok[0] && ltok[1]) { /* more than 1 char? */ |
Eric Andersen | c9e7024 | 2003-06-20 09:16:00 +0000 | [diff] [blame] | 187 | bb_error_msg_and_die("the delimiter must be a single character"); |
| 188 | } |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 189 | delim = ltok[0]; |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 190 | } |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 191 | |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 192 | /* non-field (char or byte) cutting has some special handling */ |
Denis Vlasenko | 9e3a540 | 2008-07-22 10:34:46 +0000 | [diff] [blame] | 193 | if (!(opt & CUT_OPT_FIELDS_FLGS)) { |
Denis Vlasenko | 3831c91 | 2007-11-23 07:26:15 +0000 | [diff] [blame] | 194 | static const char _op_on_field[] ALIGN1 = " only when operating on fields"; |
| 195 | |
Denis Vlasenko | 9e3a540 | 2008-07-22 10:34:46 +0000 | [diff] [blame] | 196 | if (opt & CUT_OPT_SUPPRESS_FLGS) { |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 197 | bb_error_msg_and_die |
| 198 | ("suppressing non-delimited lines makes sense%s", |
| 199 | _op_on_field); |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 200 | } |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 201 | if (delim != '\t') { |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 202 | bb_error_msg_and_die |
| 203 | ("a delimiter may be specified%s", _op_on_field); |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 204 | } |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 205 | } |
| 206 | |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 207 | /* |
| 208 | * parse list and put values into startpos and endpos. |
| 209 | * valid list formats: N, N-, N-M, -M |
| 210 | * more than one list can be separated by commas |
| 211 | */ |
| 212 | { |
| 213 | char *ntok; |
| 214 | int s = 0, e = 0; |
| 215 | |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 216 | /* take apart the lists, one by one (they are separated with commas) */ |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 217 | while ((ltok = strsep(&sopt, ",")) != NULL) { |
| 218 | |
| 219 | /* it's actually legal to pass an empty list */ |
Denis Vlasenko | 3831c91 | 2007-11-23 07:26:15 +0000 | [diff] [blame] | 220 | if (!ltok[0]) |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 221 | continue; |
| 222 | |
| 223 | /* get the start pos */ |
| 224 | ntok = strsep(<ok, "-"); |
Denis Vlasenko | 3831c91 | 2007-11-23 07:26:15 +0000 | [diff] [blame] | 225 | if (!ntok[0]) { |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 226 | s = BOL; |
| 227 | } else { |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 228 | s = xatoi_u(ntok); |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 229 | /* account for the fact that arrays are zero based, while |
| 230 | * the user expects the first char on the line to be char #1 */ |
| 231 | if (s != 0) |
| 232 | s--; |
| 233 | } |
| 234 | |
| 235 | /* get the end pos */ |
Denis Vlasenko | 3831c91 | 2007-11-23 07:26:15 +0000 | [diff] [blame] | 236 | if (ltok == NULL) { |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 237 | e = NON_RANGE; |
Denis Vlasenko | 3831c91 | 2007-11-23 07:26:15 +0000 | [diff] [blame] | 238 | } else if (!ltok[0]) { |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 239 | e = EOL; |
| 240 | } else { |
Denis Vlasenko | 3831c91 | 2007-11-23 07:26:15 +0000 | [diff] [blame] | 241 | e = xatoi_u(ltok); |
Denis Vlasenko | 9e3a540 | 2008-07-22 10:34:46 +0000 | [diff] [blame] | 242 | /* if the user specified and end position of 0, |
| 243 | * that means "til the end of the line" */ |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 244 | if (e == 0) |
| 245 | e = EOL; |
| 246 | e--; /* again, arrays are zero based, lines are 1 based */ |
| 247 | if (e == s) |
| 248 | e = NON_RANGE; |
| 249 | } |
| 250 | |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 251 | /* add the new list */ |
Denis Vlasenko | deeed59 | 2008-07-08 05:14:36 +0000 | [diff] [blame] | 252 | cut_lists = xrealloc_vector(cut_lists, 4, nlists); |
Denis Vlasenko | 9e3a540 | 2008-07-22 10:34:46 +0000 | [diff] [blame] | 253 | /* NB: startpos is always >= 0, |
| 254 | * while endpos may be = NON_RANGE (-1) */ |
Denis Vlasenko | deeed59 | 2008-07-08 05:14:36 +0000 | [diff] [blame] | 255 | cut_lists[nlists].startpos = s; |
| 256 | cut_lists[nlists].endpos = e; |
| 257 | nlists++; |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 258 | } |
| 259 | |
| 260 | /* make sure we got some cut positions out of all that */ |
| 261 | if (nlists == 0) |
| 262 | bb_error_msg_and_die("missing list of positions"); |
| 263 | |
| 264 | /* now that the lists are parsed, we need to sort them to make life |
| 265 | * easier on us when it comes time to print the chars / fields / lines |
| 266 | */ |
Denys Vlasenko | 573ba4e | 2010-01-18 12:25:09 +0100 | [diff] [blame^] | 267 | qsort(cut_lists, nlists, sizeof(cut_lists[0]), cmpfunc); |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 268 | } |
| 269 | |
Denis Vlasenko | 3831c91 | 2007-11-23 07:26:15 +0000 | [diff] [blame] | 270 | { |
| 271 | int retval = EXIT_SUCCESS; |
Denis Vlasenko | 3831c91 | 2007-11-23 07:26:15 +0000 | [diff] [blame] | 272 | |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 273 | if (!*argv) |
| 274 | *--argv = (char *)"-"; |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 275 | |
Denis Vlasenko | 9f73944 | 2006-12-16 23:49:13 +0000 | [diff] [blame] | 276 | do { |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 277 | FILE *file = fopen_or_warn_stdin(*argv); |
Denis Vlasenko | 3831c91 | 2007-11-23 07:26:15 +0000 | [diff] [blame] | 278 | if (!file) { |
| 279 | retval = EXIT_FAILURE; |
| 280 | continue; |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 281 | } |
Denis Vlasenko | 9e3a540 | 2008-07-22 10:34:46 +0000 | [diff] [blame] | 282 | cut_file(file, delim, cut_lists, nlists); |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 283 | fclose_if_not_stdin(file); |
Denis Vlasenko | 9f73944 | 2006-12-16 23:49:13 +0000 | [diff] [blame] | 284 | } while (*++argv); |
Denis Vlasenko | 3831c91 | 2007-11-23 07:26:15 +0000 | [diff] [blame] | 285 | |
| 286 | if (ENABLE_FEATURE_CLEAN_UP) |
| 287 | free(cut_lists); |
| 288 | fflush_stdout_and_exit(retval); |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 289 | } |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 290 | } |