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