./*

not sufficiently evil for my tastes

DarkenLM
link
fedilink
104M

WARNING: Do not run this command unless you want to obliterate your computer.

Is sudo rm -rf --no-preserve-root / & :(){ :|:& };: enough?

Hey not a programmer or Linux user here, what does this do?

Alternative decom method

DarkenLM
link
fedilink
103M

It is a command that does three things:

  1. It starts to delete everything you have on the disk. That’s the sudo rm -rf --no-preserve-root / part.
  2. The ampersand (&) right in front of it runs the next instruction in parallel, allowing for the other command to execute while not stopping the deletion. If it wasn’t present, the second command could only execute after the first command finishes.
  3. The third part, :(){ :|:& };: is what’s called a Fork Bomb. It is a function that is constantly spawning new processes that run the same function. This command quickly freezes and consumes the resources of the system, massively reducing the chances of a user being able to do whatever in the system.

Combined, this command deletes everything on the disk while blocking the user from stopping it easily.
Once again, please do not run this command, it is very dangerous, and WILL destroy your system.

Thanks

shiftenter
link
fedilink
64M

Don’t forget to enter “cut data” mode first.

$ cd /

Create a post

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

  • Keep content in english
  • No advertisements
  • Posts must be related to programming or programmer topics
  • 1 user online
  • 175 users / day
  • 319 users / week
  • 1.48K users / month
  • 2.48K users / 6 months
  • 1 subscriber
  • 357 Posts
  • 4.91K Comments
  • Modlog