coreutils

General Software Utilities
git clone http://git.omkov.net/coreutils
Log | Tree | Refs | README | LICENCE | Download

coreutils/src/yes.c (12 lines, 242 B) -rw-r--r-- blame download

01234567891011
// yes.c, version 1.0.1
// OMKOV coreutils implementation of yes
// Copyright (C) 2020, Jakob Wakeling
// MIT Licence

#include <stdio.h>

int main(int ac, char *av[]) {
	if (ac == 1) for (;;) { puts("y"); }
	else for (;;) { puts(av[1]); }
}