10 lines
142 B
C
10 lines
142 B
C
![]() |
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
int main( ) {
|
||
|
char *name[2];
|
||
|
name[0] = "/bin/zsh";
|
||
|
name[1] = NULL;
|
||
|
execve(name[0], name, NULL);
|
||
|
}
|