Код: Выделить всё
#!/bin/bash
for i in {1..1000} ; do
wget --no-cache -qO- http://192.168.27.200/index.html > /dev/null &
done
wait
Код: Выделить всё
#!/bin/bash
for i in {1..1000} ; do
wget --no-cache -qO- http://192.168.27.200/index.html > /dev/null &
done
wait