aboutsummaryrefslogtreecommitdiff
path: root/yes.c
diff options
context:
space:
mode:
Diffstat (limited to 'yes.c')
-rw-r--r--yes.c41
1 files changed, 41 insertions, 0 deletions
diff --git a/yes.c b/yes.c
new file mode 100644
index 000000000..96d6257d0
--- /dev/null
+++ b/yes.c
@@ -0,0 +1,41 @@
1/*
2 * Mini yes implementation for busybox
3 *
4 * Copyright (C) 2000 Edward Betts <edward@debian.org>.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
22#include "internal.h"
23#include <stdio.h>
24
25extern int yes_main(int argc, char **argv) {
26 int i;
27 if (argc == 1)
28 while (1)
29 if (puts ("y") == EOF) {
30 perror ("yes");
31 exit(FALSE);
32 }
33
34 while (1)
35 for (i = 1; i < argc; i++)
36 if (fputs (argv[i], stdout) == EOF || putchar (i == argc - 1 ? '\n' : ' ') == EOF) {
37 perror ("yes");
38 exit(FALSE);
39 }
40 exit(TRUE);
41}