19 lines
462 B
Plaintext
19 lines
462 B
Plaintext
system
|
|
======
|
|
:title: Shellcode Compiler Runtime
|
|
|
|
---------------------------------------------
|
|
int system(const char* cmd);
|
|
---------------------------------------------
|
|
|
|
Executes the command `cmd` within a new shell process. Returns the exit status of the command.
|
|
|
|
See also
|
|
--------
|
|
link:bash.html[bash],
|
|
link:execve.html[execve],
|
|
link:fork.html[fork],
|
|
link:interactive_bash.html[interactive_bash],
|
|
link:interactive_sh.html[interactive_sh],
|
|
link:sh.html[sh]
|