mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-27 07:43:07 +02:00
10 lines
73 B
C
10 lines
73 B
C
main(c, v, e)
|
|
int c;
|
|
char **v, **e;
|
|
{
|
|
close(0);
|
|
execv(v[1], v+1);
|
|
}
|
|
|
|
|