Skip to content

Instantly share code, notes, and snippets.

@timb-machine
Created October 19, 2025 18:20
Show Gist options
  • Save timb-machine/c55a3338328872d3fe258c4ce061dd76 to your computer and use it in GitHub Desktop.
Save timb-machine/c55a3338328872d3fe258c4ce061dd76 to your computer and use it in GitHub Desktop.
Racey monkey
#include <unistd.h>
#include <stdio.h>
int main(int argc, char **argv) {
while (symlink(argv[2], argv[1])) {
}
printf("w00t!\n");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment