10 lines
163 B
C
10 lines
163 B
C
#include <unistd.h>
|
|
#include <stdio.h>
|
|
|
|
int main(void) {
|
|
if(execl("./itptfile", "tools", "yeah", ".", NULL) < 0) {
|
|
printf("exec error\n");
|
|
}
|
|
return 0;
|
|
}
|