mirror of
https://github.com/commial/experiments
synced 2026-06-16 13:58:02 +00:00
13 lines
273 B
C
13 lines
273 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
int main() {
|
|
char *newargv[] = { "/bin/ls", "/", NULL };
|
|
char *newenviron[] = { NULL };
|
|
|
|
execve("/bin/ls", newargv, newenviron);
|
|
perror("execve"); /* execve() returns only on error */
|
|
exit(EXIT_FAILURE);
|
|
}
|