Created
October 19, 2025 18:20
-
-
Save timb-machine/c55a3338328872d3fe258c4ce061dd76 to your computer and use it in GitHub Desktop.
Racey monkey
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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