Skip to content

Instantly share code, notes, and snippets.

@anshprat
Created March 18, 2016 00:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anshprat/9fb082f6265a874f9136 to your computer and use it in GitHub Desktop.
Save anshprat/9fb082f6265a874f9136 to your computer and use it in GitHub Desktop.
test load
#!/bin/bash
c=0
while [ $c -le 5 ]
do
while [ 1 ]
do
echo 1>/dev/null
done &
let c=c+1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment