Solaris Loadgenerator

From Lolly's Wiki
Revision as of 16:26, 25 November 2021 by Lollypop (talk | contribs) (Text replacement - "</source" to "</syntaxhighlight")
Jump to navigationJump to search

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>. <source lang=bash>

  1. !/usr/bin/bash

count=$1

for((i=1;i<=${count};i++)) do

 cat /dev/urandom | bzip2 | gzip -9 >/dev/null &

done </syntaxhighlight>