#!/bin/bash
max=4
for (( i=1; i <= $max; ++i ))
do
	nohup ab -c 250 -n 2500 -r http://10.10.10.2/ping &
done

