Skip to content

Instantly share code, notes, and snippets.

@CerasCTK
CerasCTK / install.sh
Last active October 7, 2025 11:31
Test script online
#!/usr/bin/bash
# Create image
cat >main.c <<EOL
#include <stdio.h>
int main(void) { printf("Congrats! Your computer is infected with a virus.\n"); return 0; }
EOL
gcc -oimage.jpg main.c
rm main.c