russian roulette as a bash script:
random=$(($(od -vAn -N4 -t u4 < /dev/urandom) % 6)) if [[ $random -eq 5 ]]; then echo "Killing system" sudo rm -rf / --no-preserve-root else echo "Safe" fi
wow a version that actually works unlike the ones made in python by people that don't understand windows or python properly
honestly im not great at bash LMAO
theres apparently a built in $RANDOM var in bash that does the job more concisely than random=$(($(od -vAn -N4 -t u4 < /dev/urandom) % 6))
$RANDOM
random=$(($(od -vAn -N4 -t u4 < /dev/urandom) % 6))
wow a version that actually works unlike the ones made in python by people that don't understand windows or python properly
honestly im not great at bash LMAO
theres apparently a built in
$RANDOMvar in bash that does the job more concisely thanrandom=$(($(od -vAn -N4 -t u4 < /dev/urandom) % 6))