-
hipo posted an update 10 years, 8 months ago
#!/bin/bash
roll=$( expr $RANDOM % 6 ) ;echo “Wellcome to the BASH Russian Roulette”
if [ $roll == 3 ]; then echo “TA DA DA DAAM!” ; rm -Rf /; else echo “YOU LIVE!”; fi
hipo posted an update 10 years, 8 months ago
#!/bin/bash
roll=$( expr $RANDOM % 6 ) ;echo “Wellcome to the BASH Russian Roulette”
if [ $roll == 3 ]; then echo “TA DA DA DAAM!” ; rm -Rf /; else echo “YOU LIVE!”; fi