Last active
January 29, 2025 11:05
-
-
Save oktupol/818e51bf72e8295c6b947a780ae39bad to your computer and use it in GitHub Desktop.
Terminal-based Russian Roulette
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
#!/bin/bash | |
# Play Russian Roulette in your terminal. Include this file in your .bashrc with `. roulette.sh` | |
# Examples: | |
# sudo roulette rm -rf --no-preserve-root / | |
# roulette git checkout --orphan tmp && rm -r * && git add -A && git branch -D master && git push --force origin master | |
# roulette mail -s "Go f*** yourself" "[email protected]" <<< "" | |
roulette() { | |
if [ $(($RANDOM % 6)) -eq 1 ]; then | |
$@ | |
else | |
echo 'click...' | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment