aboutsummaryrefslogtreecommitdiff
path: root/yes.c
diff options
context:
space:
mode:
authorerik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-01-15 22:28:50 +0000
committererik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-01-15 22:28:50 +0000
commitb70b4fb69631f8c6983d408934eb264e70b73028 (patch)
treefe0c764cb41cc3ea86c3dcd270e48fa6a1abebcd /yes.c
parentaf85d86cf00c6ad478e1016f75ed6d55200751fc (diff)
downloadbusybox-w32-b70b4fb69631f8c6983d408934eb264e70b73028.tar.gz
busybox-w32-b70b4fb69631f8c6983d408934eb264e70b73028.tar.bz2
busybox-w32-b70b4fb69631f8c6983d408934eb264e70b73028.zip
Sync up busybox with the latest and greatest. This is not stuff for
the Embedix release. -Erik git-svn-id: svn://busybox.net/trunk/busybox@309 69ca8d6d-28ef-0310-b511-8ec308f3f277
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}