Skip to content

Instantly share code, notes, and snippets.

@kjensenxz
Created June 13, 2017 06:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kjensenxz/b39de17780f023e44ffb0237b1b3cfb0 to your computer and use it in GitHub Desktop.
Save kjensenxz/b39de17780f023e44ffb0237b1b3cfb0 to your computer and use it in GitHub Desktop.
COHERENT Unix's yes, c. 2001
/*
* Produce a continuous stream of `y's
* or `n's.
*/
#include <stdio.h>
main(argc, argv)
char *argv[];
{
char *yes = "y";
if (argc > 2)
usage();
if (argc > 1)
yes = argv[1];
for (;;)
puts(yes);
/* NOTREACHED */
}
usage()
{
fprintf(stderr, "Usage: yes [answer]\n");
exit(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment