14Oct/090
Simulate load on linux serve with one-line command
Some days ago I needed a quick way to simulate load on a Linux sever. While there are many tools that can do this, all I needed was a simple bash one-line command that can make the CPUs beg for mercy.
What I ended up using is this:
dd if=/dev/zero bs=100M | gzip | gzip -d | gzip | gzip -d | gzip | gzip -d > /dev/null &
Send a few of these to the background and you'll start seeing smoke coming from your server soon.
12Oct/090
Bash sequences
A very helpful command I like to use to organize folders is:
for i in {a..z}; do mkdir $i; done
This creates a folder for each letter from "a" to "z".