Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
@thmnmlst It rolls a number between 0 and 6, if the number is(or everything but not 0 :D idk) 0, it will just rum rm -rf, elseways, it will print "CLICK".
-
vhoyer13538yyou should do this `PROMPT_COMMAND=[ $[ $RANDOM % 6 ] == 0 ] && rm -rf / || echo *CLICK*` and live every command like your last :D
-
$ [ $[ $RANDOM % 6 ] == 0 ] && rm -rf / || echo "CLICK"
rm: it is dangerour to operate recursively on '/'
rm: use --no-preserve-root to override this failsafe
CLICK -
Hoshi538y@thmnmlst It searches for a random chance until 6, if its 0, It'll erease/unmount everything. @thmnmlst
Related Rants
Kids, dont try this at home.
[ $[ $RANDOM % 6 ] == 0 ] && rm -rf / || echo *CLICK*
A.K.A terminal russian roulette.
undefined
terminal
fun
console
bash