sbase/yes.c

29 lines
431 B
C
Raw Normal View History

2012-04-23 10:27:40 -04:00
/* See LICENSE file for copyright and license details. */
#include <stdio.h>
2012-04-23 10:27:40 -04:00
#include "util.h"
static void
usage(void)
{
eprintf("usage: %s [string ...]\n", argv0);
}
2012-04-23 10:27:40 -04:00
int
main(int argc, char *argv[])
{
size_t i;
2012-04-23 10:27:40 -04:00
ARGBEGIN {
default:
2012-05-15 08:32:56 -04:00
usage();
2012-04-23 10:27:40 -04:00
} ARGEND;
for (i = 0; ; i++, i %= argc ? argc : 1) {
fputs(argc ? argv[i] : "y", stdout);
putchar((!argc || i == argc - 1) ? '\n' : ' ');
}
return 1; /* not reached */
2012-04-23 10:27:40 -04:00
}