testclient.sh 157 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 #!/bin/sh pids="" i=0 while [ $i -lt 20 ] do dd if=/dev/zero bs=8192 count=25000 | nc localhost 5678 & pids="${pids} $!" i=$((i + 1)) done wait ${pids}