aboutsummaryrefslogtreecommitdiff
path: root/findutils
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-09-26 01:00:15 +0000
committerEric Andersen <andersen@codepoet.org>2000-09-26 01:00:15 +0000
commitd266748c763ccabaa12f200e81531a2f6c4df5f3 (patch)
treea5f76b37546cedfb0eff68bcd34d3363183c517c /findutils
parent53323695c506b9dcf1946f1b26e63e696c74020d (diff)
downloadbusybox-d266748c763ccabaa12f200e81531a2f6c4df5f3.tar.gz
Yet more polish (thanks again to kent robotti for the bug reports).
-Erik
Diffstat (limited to 'findutils')
-rw-r--r--findutils/xargs.c22
1 files changed, 12 insertions, 10 deletions
diff --git a/findutils/xargs.c b/findutils/xargs.c
index beada7a15..433567b77 100644
--- a/findutils/xargs.c
+++ b/findutils/xargs.c
@@ -38,7 +38,7 @@ int xargs_main(int argc, char **argv)
char *args = NULL;
char *cmd_to_be_executed = NULL;
char traceflag = 0;
- int len_args=2, len_cmd_to_be_executed, opt;
+ int len_args=0, len_cmd_to_be_executed, opt;
pid_t pid;
int wpid, status;
@@ -69,8 +69,8 @@ int xargs_main(int argc, char **argv)
strcat(cmd_to_be_executed, *argv);
}
- args=xrealloc(args, len_args);
- strcpy(args, " ");
+ //args=xrealloc(args, len_args);
+// strcpy(args, " ");
/* Now, read in one line at a time from stdin, and store this
* line to be used later as an argument to the command */
@@ -112,21 +112,23 @@ int xargs_main(int argc, char **argv)
in_from_stdin = get_line_from_file(stdin);
}
- if (traceflag==1) {
- fprintf(stderr, "%s%s\n", cmd_to_be_executed, args);
- }
-
if ((pid = fork()) == 0) {
char *cmd[255];
int i=1;
- //printf("argv[0]='%s'\n", cmd_to_be_executed);
+ if (traceflag==1) {
+ fprintf(stderr, "%s ", cmd_to_be_executed);
+ }
cmd[0] = cmd_to_be_executed;
while (--argc && ++argv && *argv ) {
- //printf("argv[%d]='%s'\n", i, *argv);
+ if (traceflag==1) {
+ fprintf(stderr, "%s ", *argv);
+ }
cmd[i++]=*argv;
}
- //printf("argv[%d]='%s'\n", i, args);
+ if (traceflag==1) {
+ fprintf(stderr, "%s\n", args);
+ }
cmd[i++] = args;
cmd[i] = NULL;
execvp(cmd_to_be_executed, cmd);