test.sh 140 B

12345678910
  1. #!/bin/bash
  2. I=0
  3. N=100
  4. while [ "$I" -lt "$N" ]
  5. do
  6. php -f ./test.php 127.0.0.1 8890 'time' 10000 10 > ./$I.txt 2>/dev/null &
  7. ((I++))
  8. done