Solaris Loadgenerator: Difference between revisions
From Lolly's Wiki
Jump to navigationJump to search
m (Text replacement - "</source" to "</syntaxhighlight") |
m (Text replacement - "<source" to "<syntaxhighlight") |
||
Line 3: | Line 3: | ||
Call it with <scriptname> <number> to generate a load of <number>. | Call it with <scriptname> <number> to generate a load of <number>. | ||
< | <syntaxhighlight lang=bash> | ||
#!/usr/bin/bash | #!/usr/bin/bash | ||
Revision as of 23:44, 25 November 2021
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 :-).
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