blob: 24daf50852c3fdbb006307a938d4aab05f71e944 [file] [log] [blame]
Eric Andersena37d5b72000-09-23 06:10:14 +00001/* vi: set sw=4 ts=4: */
Eric Andersen5b176932000-09-22 20:22:28 +00002/*
Eric Andersena37d5b72000-09-23 06:10:14 +00003 * Mini xargs implementation for busybox
Eric Andersen5b176932000-09-22 20:22:28 +00004 *
Eric Andersena37d5b72000-09-23 06:10:14 +00005 * Copyright (C) 2000 by Lineo, inc.
6 * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.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 Andersena37d5b72000-09-23 06:10:14 +000024#include "internal.h"
Eric Andersen5b176932000-09-22 20:22:28 +000025#include <stdlib.h>
Eric Andersen5b176932000-09-22 20:22:28 +000026#include <stdio.h>
Eric Andersena37d5b72000-09-23 06:10:14 +000027#include <string.h>
28#include <errno.h>
Eric Andersen92a61c12000-09-22 20:01:23 +000029#include <getopt.h>
30
Eric Andersen92a61c12000-09-22 20:01:23 +000031
Eric Andersena37d5b72000-09-23 06:10:14 +000032int xargs_main(int argc, char **argv)
Eric Andersen92a61c12000-09-22 20:01:23 +000033{
Eric Andersena37d5b72000-09-23 06:10:14 +000034 char *in_from_stdin = NULL;
35 char *args_from_cmdline = NULL;
36 char *cmd_to_be_executed = NULL;
37 char traceflag = 0;
38 int len_args_from_cmdline, len_cmd_to_be_executed, len, opt;
Eric Andersen92a61c12000-09-22 20:01:23 +000039
Eric Andersena37d5b72000-09-23 06:10:14 +000040 while ((opt = getopt(argc, argv, "t")) != EOF) {
41 switch (opt) {
42 case 't':
43 traceflag=1;
44 break;
45 default:
46 fatalError(xargs_usage);
47 }
48 }
Eric Andersen92a61c12000-09-22 20:01:23 +000049
Eric Andersena37d5b72000-09-23 06:10:14 +000050 /* Store the command and arguments to be executed (from the command line) */
51 if (optind == argc) {
52 len_args_from_cmdline = 6;
53 args_from_cmdline = xmalloc(len_args_from_cmdline);
54 strcat(args_from_cmdline, "echo ");
55 } else {
56 opt=strlen(argv[optind]);
57 len_args_from_cmdline = (opt > 10)? opt : 10;
58 args_from_cmdline = xcalloc(len_args_from_cmdline, sizeof(char));
59 for (; optind < argc; optind++) {
60 if (strlen(argv[optind]) + strlen(args_from_cmdline) >
61 len_args_from_cmdline) {
62 len_args_from_cmdline += strlen(argv[optind]);
63 args_from_cmdline =
64 xrealloc(args_from_cmdline,
65 len_args_from_cmdline+1);
66 }
67 strcat(args_from_cmdline, argv[optind]);
68 strcat(args_from_cmdline, " ");
69 }
70 }
Eric Andersen92a61c12000-09-22 20:01:23 +000071
Eric Andersena37d5b72000-09-23 06:10:14 +000072 /* Set up some space for the command to be executed to be held in */
73 len_cmd_to_be_executed=10;
74 cmd_to_be_executed = xcalloc(len_cmd_to_be_executed, sizeof(char));
75 strcpy(cmd_to_be_executed, args_from_cmdline);
76 strcat(cmd_to_be_executed, " ");
Eric Andersen92a61c12000-09-22 20:01:23 +000077
Eric Andersena37d5b72000-09-23 06:10:14 +000078 /* Now, read in one line at a time from stdin, and run command+args on it */
79 in_from_stdin = get_line_from_file(stdin);
80 for (;in_from_stdin!=NULL;) {
81 len = strlen(in_from_stdin) + len_args_from_cmdline;
82 if ( len > len_cmd_to_be_executed ) {
83 len_cmd_to_be_executed=len+3;
84 cmd_to_be_executed=xrealloc(cmd_to_be_executed, len_cmd_to_be_executed);
85 }
86 strcat(cmd_to_be_executed, in_from_stdin);
87 strcat(cmd_to_be_executed+strlen(cmd_to_be_executed)-2, " ");
88 strcat(cmd_to_be_executed, " ");
89
90 free(in_from_stdin);
91 in_from_stdin = get_line_from_file(stdin);
92 }
93
94 if (traceflag==1)
95 fputs(cmd_to_be_executed, stderr);
96
97 if ((system(cmd_to_be_executed) != 0) && (errno != 0))
98 fatalError("%s", strerror(errno));
99
100
101#ifdef BB_FEATURE_CLEAN_UP
102 free(args_from_cmdline);
103 free(cmd_to_be_executed);
104#endif
105
106 return 0;
Eric Andersen92a61c12000-09-22 20:01:23 +0000107}
Eric Andersena37d5b72000-09-23 06:10:14 +0000108/*
109Local Variables:
110c-file-style: "linux"
111c-basic-offset: 4
112tab-width: 4
113End:
114*/
115