testclient.sh 160 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 400 ] do dd if=/dev/zero bs=8192 count=2500 | nc 192.168.2.13 5678 & pids="${pids} $!" i=$((i + 1)) done wait ${pids}