(Up to OJB's Mac Tips List Page)
Make the CPU Work HardHow to Make the CPU Work Hard
First, why would you want to do this? Maybe for testing, to check the responsiveness of the computer under load. Also to force the fans to run to check that they work, and also to help clear water in case of a water spill!
Use this command: yes > /dev/null &
This creates a background task which will send the word "yes" as often as possible (it is usually used to answer commands with repeated prompts to continue).
Repeat the command to create more threads. Do this as often as necessary to put the required load on the computer.
When your testing is complete, terminate them all with: killall yes
|