Files
bash/CWRU/misc/nofd0.c
T
2011-12-03 12:52:47 -05:00

10 lines
73 B
C

main(c, v, e)
int c;
char **v, **e;
{
close(0);
execv(v[1], v+1);
}