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
-
@Plasticnova Oh fuck you right man
$ sudo rm /usr/bin/rm
$ sudo rm -rf --no-preserve-root /
sudo: command not found: rm -
Will this legit actually work? I need to kick up a docker container when I get home :O
-
@andpeterson Yes it does work, I believe that when you run a binary it loads it into RAM so it doesn't need to use the binary itself until the next time. And I just tested it by moving the rm binary to my home directory
$ cp /usr/bin/rm ~
$ ~/rm ~/rm
sudo rm /usr/bin/rm
random