Skip to content

Instantly share code, notes, and snippets.

@webgtx
Created April 17, 2022 01:21
Show Gist options
  • Save webgtx/bdab20f4e1d25be3d97e5b03bcd860c4 to your computer and use it in GitHub Desktop.
Save webgtx/bdab20f4e1d25be3d97e5b03bcd860c4 to your computer and use it in GitHub Desktop.
How to use system shell in C.
int system(const char *shell);
int main() {
system("whoami");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment