blob: c63518fe545225a0eec0912a0da308e6a214843f [file] [log] [blame]
Eric Andersen5b176932000-09-22 20:22:28 +00001/*
Eric Andersena37d5b72000-09-23 06:10:14 +00002 * Mini xargs implementation for busybox
Eric Andersen5b176932000-09-22 20:22:28 +00003 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +00004 * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen
5 * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
6 * Remixed by Mark Whitley <markw@codepoet.org>
Eric Andersen5b176932000-09-22 20:22:28 +00007 *
Eric Andersena37d5b72000-09-23 06:10:14 +00008 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
Eric Andersen5b176932000-09-22 20:22:28 +000012 *
Eric Andersena37d5b72000-09-23 06:10:14 +000013 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
Eric Andersen5b176932000-09-22 20:22:28 +000017 *
Eric Andersena37d5b72000-09-23 06:10:14 +000018 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
Eric Andersen5b176932000-09-22 20:22:28 +000022 */
Eric Andersen92a61c12000-09-22 20:01:23 +000023
Eric Andersen5b176932000-09-22 20:22:28 +000024#include <stdio.h>
Mark Whitleye2e2c292000-11-14 22:43:21 +000025#include <stdlib.h>
Eric Andersena37d5b72000-09-23 06:10:14 +000026#include <string.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000027#include "busybox.h"
Eric Andersen92a61c12000-09-22 20:01:23 +000028
Eric Andersena37d5b72000-09-23 06:10:14 +000029int xargs_main(int argc, char **argv)
Eric Andersen92a61c12000-09-22 20:01:23 +000030{
Eric Andersena37d5b72000-09-23 06:10:14 +000031 char *cmd_to_be_executed = NULL;
Mark Whitleye2e2c292000-11-14 22:43:21 +000032 char *file_to_act_on = NULL;
Eric Andersen92a61c12000-09-22 20:01:23 +000033
Mark Whitleye2e2c292000-11-14 22:43:21 +000034 /*
35 * No options are supported in this version of xargs; no getopt.
36 *
37 * Re: The missing -t flag: Most programs that produce output also print
38 * the filename, so xargs doesn't really need to do it again. Supporting
39 * the -t flag =greatly= bloats up the size of this app and the memory it
40 * uses because you have to buffer all the input file strings in memory. If
41 * you really want to see the filenames that xargs will act on, just run it
42 * once with no args and xargs will echo the filename. Simple.
43 */
Eric Andersen92a61c12000-09-22 20:01:23 +000044
Eric Andersene081eae2000-09-25 20:23:21 +000045 /* Store the command to be executed (taken from the command line) */
Mark Whitleye2e2c292000-11-14 22:43:21 +000046 if (argc == 1) {
47 /* default behavior is to echo all the filenames */
Eric Andersen6f3240a2001-03-23 17:11:22 +000048 cmd_to_be_executed = xstrdup("/bin/echo ");
Eric Andersena37d5b72000-09-23 06:10:14 +000049 } else {
Mark Whitleye2e2c292000-11-14 22:43:21 +000050 /* concatenate all the arguments passed to xargs together */
51 int i;
52 int len = 1; /* for the '\0' */
Eric Andersend81891a2001-11-19 10:49:30 +000053 cmd_to_be_executed = xmalloc(80);
Mark Whitleye2e2c292000-11-14 22:43:21 +000054 for (i = 1; i < argc; i++) {
55 len += strlen(argv[i]);
56 len += 1; /* for the space between the args */
57 cmd_to_be_executed = xrealloc(cmd_to_be_executed, len);
58 strcat(cmd_to_be_executed, argv[i]);
59 strcat(cmd_to_be_executed, " ");
60 }
Eric Andersena37d5b72000-09-23 06:10:14 +000061 }
Eric Andersen92a61c12000-09-22 20:01:23 +000062
Eric Andersend89882d2000-09-25 22:53:05 +000063 /* Now, read in one line at a time from stdin, and store this
64 * line to be used later as an argument to the command */
Mark Whitleye2e2c292000-11-14 22:43:21 +000065 while ((file_to_act_on = get_line_from_file(stdin)) !=NULL) {
Eric Andersenbf739092000-09-25 18:41:18 +000066
Mark Whitleye2e2c292000-11-14 22:43:21 +000067 FILE *cmd_output = NULL;
68 char *output_line = NULL;
69 char *execstr = NULL;
Eric Andersene081eae2000-09-25 20:23:21 +000070
Mark Whitleye2e2c292000-11-14 22:43:21 +000071 /* eat the newline off the filename. */
Matt Kraai05e782d2001-02-01 16:49:30 +000072 chomp(file_to_act_on);
Eric Andersene081eae2000-09-25 20:23:21 +000073
Mark Whitleye2e2c292000-11-14 22:43:21 +000074 /* eat blank lines */
75 if (strlen(file_to_act_on) == 0)
76 continue;
77
78 /* assemble the command and execute it */
79 execstr = xcalloc(strlen(cmd_to_be_executed) +
80 strlen(file_to_act_on) + 1, sizeof(char));
81 strcat(execstr, cmd_to_be_executed);
82 strcat(execstr, file_to_act_on);
83 cmd_output = popen(execstr, "r");
Matt Kraaia9819b22000-12-22 01:48:07 +000084 if (cmd_output == NULL)
85 perror_msg_and_die("popen");
Eric Andersene081eae2000-09-25 20:23:21 +000086
Mark Whitleye2e2c292000-11-14 22:43:21 +000087 /* harvest the output */
88 while ((output_line = get_line_from_file(cmd_output)) != NULL) {
89 fputs(output_line, stdout);
90 free(output_line);
91 }
Eric Andersen6f283c22000-09-24 02:40:56 +000092
Mark Whitleye2e2c292000-11-14 22:43:21 +000093 /* clean up */
94 pclose(cmd_output);
95 free(execstr);
96 free(file_to_act_on);
Eric Andersena37d5b72000-09-23 06:10:14 +000097 }
98
Eric Andersenbdfd0d72001-10-24 05:00:29 +000099#ifdef CONFIG_FEATURE_CLEAN_UP
Eric Andersena37d5b72000-09-23 06:10:14 +0000100 free(cmd_to_be_executed);
101#endif
102
Mark Whitleye2e2c292000-11-14 22:43:21 +0000103 return 0;
Eric Andersen92a61c12000-09-22 20:01:23 +0000104}
Mark Whitleye2e2c292000-11-14 22:43:21 +0000105
106/* vi: set sw=4 ts=4: */