Gxas said:
Bored Tomatoe said:
Ok, so its a way of software-frying a mac?
Yes. The perfect practical joke for a 'hip mac user' with tons of money.
Okay, this little run of hypocritical condescension kinda took the cake for me.
First off, plenty of us mac users are quite aware of Unix commands and how to use them(though there is definitely a set that do not). This command, by itself, will not perform the horrible action you desire. It will simply erase all the files in the current directory(if you have proper file permissions for those files). The correct set of commands are
cd /
sudo -u root rm -rf *.*
or more specifically, on mac, you open the terminal while logged in as an administrator with permission to sudo to root. Then you would enter the commands
cd /
sudo rm -rf *.*
This does a forced erasure of all files and directories starting at the root directory and doing so as the root user(which is a higher level of privilege than even the administrator, and you will have to enter a password to complete the action). The reason this permanently bricks a machine is that the firmware is also a directory(/dev) from the root directory, as fair as the Unix operating system is concerned, and root has access to those firmware directories. So, this command will delete the firmware from the machine for every device, including the CPU, motherboard chipset, GPU, harddrive chips, DVD/CD-ROM drive chips, etc(the next time you are on a Unix machine, take a glance at the /dev directory).
Actually doing this to someone's machine is not a practical joke; it's a serious act of vandalism because the machine is a literal brick at that point. If you are such a small person that you would actually do this to someone's mac just because you can't stand the unjustifiable smugness of a select few, then you prove that you are much less a person than they are.
NEVER, EVER, EVER DO THIS!!
Edit: Had to add admonishment at the end.