I was surprised to not find one of these threads here. Thought I might as well start one. Here is a list of commands you should NEVER run in Terminal unless you're sure what you are doing. There are fake tutorials around that will try and get you to run these:
DO NOT PASTE THESE COMMANDS IN TERMINAL.
1) Erase everything on hard drive with no warning:
2) Erase everything in Home folder with no warning:
3) Instantly format current drive:
4) Forkbomb. Will keep executing processes until the system freezes:
5) Open every application in /Applications at once:
Feel free to add to the list.
DO NOT PASTE THESE COMMANDS IN TERMINAL.
1) Erase everything on hard drive with no warning:
Code:
rm -rf /
Code:
rm -rf *
2) Erase everything in Home folder with no warning:
Code:
rm -rf ~/
3) Instantly format current drive:
Code:
mkfs.(anything)
4) Forkbomb. Will keep executing processes until the system freezes:
Code:
:(){:|:&};:
Code:
fork while fork
5) Open every application in /Applications at once:
Code:
open /Applications/*
Feel free to add to the list.