aboutsummaryrefslogtreecommitdiff
path: root/toys/yes.c
blob: d1091993cccf65adab72f677a869c170e37be161 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* vi: set sw=4 ts=4: */
/*
 * yes.c - Repeatedly output a string.
 *
 * Not in SUSv3.
 */

#include "toys.h"

void yes_main(void)
{
	for (;;) {
		int i;
		for (i=0; toys.optargs[i]; i++) {
			if (i) xputc(' ');
			xprintf("%s", toys.optargs[i]);
		}
		if (!i) xputc('y');
		xputc('\n');
	}
}