This commit is contained in:
Jakub Adamski 2019-01-10 15:08:03 +01:00
parent 80b80511a5
commit 1162dc72aa
1 changed files with 4 additions and 1 deletions

View File

@ -52,8 +52,11 @@ int main (){
else if (!strcmp(argv[0], "exit"))
break;
else
if (fork() == 0)
if (fork() == 0){
execvp(argv[0], argv);
perror("execvp");
exit(EXIT_FAILURE);
}
else
wait(NULL);