Solaris Loadgenerator: Difference between revisions
From Lolly's Wiki
Jump to navigationJump to search
m (Text replacement - "<source" to "<syntaxhighlight") |
m (Text replacement - "[[Kategorie:" to "[[Category:") |
||
Line 1: | Line 1: | ||
[[ | [[Category:Solaris|Loadgenerator]] | ||
This is a little script to generate load. It uses gzip and bzip2 to generate load fetched from void and compressed into the void again :-). | This is a little script to generate load. It uses gzip and bzip2 to generate load fetched from void and compressed into the void again :-). | ||
Latest revision as of 03:52, 26 November 2021
This is a little script to generate load. It uses gzip and bzip2 to generate load fetched from void and compressed into the void again :-).
Call it with <scriptname> <number> to generate a load of <number>.
#!/usr/bin/bash
count=$1
for((i=1;i<=${count};i++))
do
cat /dev/urandom | bzip2 | gzip -9 >/dev/null &
done