Created
June 13, 2017 06:10
-
-
Save kjensenxz/b39de17780f023e44ffb0237b1b3cfb0 to your computer and use it in GitHub Desktop.
COHERENT Unix's yes, c. 2001
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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