2000-02-09 03:58:47 +08:00
|
|
|
/* vi: set sw=4 ts=4: */
|
2000-01-16 06:28:50 +08:00
|
|
|
/*
|
2003-03-19 17:13:01 +08:00
|
|
|
* yes implementation for busybox
|
2000-01-16 06:28:50 +08:00
|
|
|
*
|
2003-03-19 17:13:01 +08:00
|
|
|
* Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
|
2000-01-16 06:28:50 +08:00
|
|
|
*
|
2010-08-17 02:14:46 +08:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2000-01-16 06:28:50 +08:00
|
|
|
*/
|
2003-03-19 17:13:01 +08:00
|
|
|
/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
|
|
|
|
*
|
|
|
|
* Size reductions and removed redundant applet name prefix from error messages.
|
|
|
|
*/
|
2016-11-23 21:46:56 +08:00
|
|
|
//config:config YES
|
2023-07-10 23:25:21 +08:00
|
|
|
//config: bool "yes (1.5 kb)"
|
2016-11-23 21:46:56 +08:00
|
|
|
//config: default y
|
|
|
|
//config: help
|
2017-07-21 15:50:55 +08:00
|
|
|
//config: yes is used to repeatedly output a specific string, or
|
2017-08-02 20:12:48 +08:00
|
|
|
//config: the default string 'y'.
|
2001-03-10 05:28:09 +08:00
|
|
|
|
2017-08-02 22:37:39 +08:00
|
|
|
//applet:IF_YES(APPLET_NOEXEC(yes, yes, BB_DIR_USR_BIN, BB_SUID_DROP, yes))
|
|
|
|
/* was NOFORK, but then yes can't be ^C'ed if run by hush */
|
2000-01-16 06:28:50 +08:00
|
|
|
|
2016-11-23 21:46:56 +08:00
|
|
|
//kbuild:lib-$(CONFIG_YES) += yes.o
|
|
|
|
|
|
|
|
/* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */
|
2007-04-10 23:43:37 +08:00
|
|
|
|
2010-06-06 11:23:09 +08:00
|
|
|
//usage:#define yes_trivial_usage
|
|
|
|
//usage: "[STRING]"
|
|
|
|
//usage:#define yes_full_usage "\n\n"
|
2021-06-13 09:12:09 +08:00
|
|
|
//usage: "Repeatedly print a line with STRING, or 'y'"
|
2010-06-06 11:23:09 +08:00
|
|
|
|
2016-11-23 21:46:56 +08:00
|
|
|
#include "libbb.h"
|
|
|
|
|
2007-10-11 18:05:36 +08:00
|
|
|
int yes_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2009-11-28 22:18:53 +08:00
|
|
|
int yes_main(int argc UNUSED_PARAM, char **argv)
|
2000-02-09 03:58:47 +08:00
|
|
|
{
|
2008-03-17 17:07:36 +08:00
|
|
|
char **pp;
|
2000-04-18 00:16:10 +08:00
|
|
|
|
2007-04-10 23:43:37 +08:00
|
|
|
argv[0] = (char*)"y";
|
2009-11-28 22:18:53 +08:00
|
|
|
if (argv[1])
|
2003-03-19 17:13:01 +08:00
|
|
|
++argv;
|
2000-01-16 06:28:50 +08:00
|
|
|
|
2003-03-19 17:13:01 +08:00
|
|
|
do {
|
2008-03-17 17:07:36 +08:00
|
|
|
pp = argv;
|
2007-04-10 23:43:37 +08:00
|
|
|
while (1) {
|
2021-02-04 03:47:14 +08:00
|
|
|
fputs_stdout(*pp);
|
2008-03-17 17:07:36 +08:00
|
|
|
if (!*++pp)
|
2007-04-10 23:43:37 +08:00
|
|
|
break;
|
|
|
|
putchar(' ');
|
|
|
|
}
|
2003-03-19 17:13:01 +08:00
|
|
|
} while (putchar('\n') != EOF);
|
2000-09-22 11:45:34 +08:00
|
|
|
|
2003-03-19 17:13:01 +08:00
|
|
|
bb_perror_nomsg_and_die();
|
2000-01-16 06:28:50 +08:00
|
|
|
}
|