Command you should never run on Linux


:(){ :|:& };:


It's called a Fork Bomb. Here's what it does:

:() creates a function and this function is enclosed in the parentheses {}.
The pipe ":|:" makes it run the function recursively.
The "&, ; and :" trigger the process and move it to the background so it cannot be terminated easily.

Comments

Popular Posts