2000-09-23 01:52:28 +05:30
|
|
|
/*
|
2000-09-23 11:40:14 +05:30
|
|
|
* Mini xargs implementation for busybox
|
|
|
|
*
|
2001-01-27 15:03:39 +05:30
|
|
|
* Copyright (C) 1999,2000,2001 by Lineo, inc.
|
2000-09-23 11:40:14 +05:30
|
|
|
* Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
|
2001-01-05 03:51:13 +05:30
|
|
|
* Remixed by Mark Whitley <markw@lineo.com>, <markw@codepoet.org>
|
2000-09-23 01:52:28 +05:30
|
|
|
*
|
2000-09-23 11:40:14 +05:30
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
2000-09-23 01:52:28 +05:30
|
|
|
*
|
2000-09-23 11:40:14 +05:30
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
2000-09-23 01:52:28 +05:30
|
|
|
*
|
2000-09-23 11:40:14 +05:30
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2000-09-23 01:52:28 +05:30
|
|
|
*
|
|
|
|
*/
|
2000-09-23 01:31:23 +05:30
|
|
|
|
2000-09-23 01:52:28 +05:30
|
|
|
#include <stdio.h>
|
2000-11-15 04:13:21 +05:30
|
|
|
#include <stdlib.h>
|
2000-09-23 11:40:14 +05:30
|
|
|
#include <string.h>
|
2001-02-20 11:44:08 +05:30
|
|
|
#include "busybox.h"
|
2000-09-23 01:31:23 +05:30
|
|
|
|
2000-09-23 11:40:14 +05:30
|
|
|
int xargs_main(int argc, char **argv)
|
2000-09-23 01:31:23 +05:30
|
|
|
{
|
2000-09-23 11:40:14 +05:30
|
|
|
char *cmd_to_be_executed = NULL;
|
2000-11-15 04:13:21 +05:30
|
|
|
char *file_to_act_on = NULL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* No options are supported in this version of xargs; no getopt.
|
|
|
|
*
|
|
|
|
* Re: The missing -t flag: Most programs that produce output also print
|
|
|
|
* the filename, so xargs doesn't really need to do it again. Supporting
|
|
|
|
* the -t flag =greatly= bloats up the size of this app and the memory it
|
|
|
|
* uses because you have to buffer all the input file strings in memory. If
|
|
|
|
* you really want to see the filenames that xargs will act on, just run it
|
|
|
|
* once with no args and xargs will echo the filename. Simple.
|
|
|
|
*/
|
2000-09-23 01:52:28 +05:30
|
|
|
|
2000-09-26 01:53:21 +05:30
|
|
|
/* Store the command to be executed (taken from the command line) */
|
2000-11-15 04:13:21 +05:30
|
|
|
if (argc == 1) {
|
|
|
|
/* default behavior is to echo all the filenames */
|
2001-03-23 22:41:22 +05:30
|
|
|
cmd_to_be_executed = xstrdup("/bin/echo ");
|
2000-09-23 11:40:14 +05:30
|
|
|
} else {
|
2000-11-15 04:13:21 +05:30
|
|
|
/* concatenate all the arguments passed to xargs together */
|
|
|
|
int i;
|
|
|
|
int len = 1; /* for the '\0' */
|
|
|
|
for (i = 1; i < argc; i++) {
|
|
|
|
len += strlen(argv[i]);
|
|
|
|
len += 1; /* for the space between the args */
|
|
|
|
cmd_to_be_executed = xrealloc(cmd_to_be_executed, len);
|
|
|
|
strcat(cmd_to_be_executed, argv[i]);
|
|
|
|
strcat(cmd_to_be_executed, " ");
|
|
|
|
}
|
2000-09-23 11:40:14 +05:30
|
|
|
}
|
2000-09-23 01:52:28 +05:30
|
|
|
|
2000-09-26 04:23:05 +05:30
|
|
|
/* Now, read in one line at a time from stdin, and store this
|
|
|
|
* line to be used later as an argument to the command */
|
2000-11-15 04:13:21 +05:30
|
|
|
while ((file_to_act_on = get_line_from_file(stdin)) !=NULL) {
|
|
|
|
|
|
|
|
FILE *cmd_output = NULL;
|
|
|
|
char *output_line = NULL;
|
|
|
|
char *execstr = NULL;
|
|
|
|
|
|
|
|
/* eat the newline off the filename. */
|
2001-02-01 22:19:30 +05:30
|
|
|
chomp(file_to_act_on);
|
2000-11-15 04:13:21 +05:30
|
|
|
|
|
|
|
/* eat blank lines */
|
|
|
|
if (strlen(file_to_act_on) == 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* assemble the command and execute it */
|
|
|
|
execstr = xcalloc(strlen(cmd_to_be_executed) +
|
|
|
|
strlen(file_to_act_on) + 1, sizeof(char));
|
|
|
|
strcat(execstr, cmd_to_be_executed);
|
|
|
|
strcat(execstr, file_to_act_on);
|
|
|
|
cmd_output = popen(execstr, "r");
|
2000-12-22 07:18:07 +05:30
|
|
|
if (cmd_output == NULL)
|
|
|
|
perror_msg_and_die("popen");
|
2000-09-26 01:53:21 +05:30
|
|
|
|
2000-11-15 04:13:21 +05:30
|
|
|
/* harvest the output */
|
|
|
|
while ((output_line = get_line_from_file(cmd_output)) != NULL) {
|
|
|
|
fputs(output_line, stdout);
|
|
|
|
free(output_line);
|
2000-09-26 06:30:15 +05:30
|
|
|
}
|
2000-09-26 01:53:21 +05:30
|
|
|
|
2000-11-15 04:13:21 +05:30
|
|
|
/* clean up */
|
|
|
|
pclose(cmd_output);
|
|
|
|
free(execstr);
|
|
|
|
free(file_to_act_on);
|
2000-09-26 01:53:21 +05:30
|
|
|
}
|
2000-09-23 11:40:14 +05:30
|
|
|
|
|
|
|
#ifdef BB_FEATURE_CLEAN_UP
|
|
|
|
free(cmd_to_be_executed);
|
|
|
|
#endif
|
|
|
|
|
2000-11-15 04:13:21 +05:30
|
|
|
return 0;
|
2000-09-23 01:31:23 +05:30
|
|
|
}
|
2000-11-15 04:13:21 +05:30
|
|
|
|
|
|
|
/* vi: set sw=4 ts=4: */
|