mirror of
https://github.com/3lswear/webserv.git
synced 2025-10-28 12:58:00 +03:00
9 lines
180 B
Bash
9 lines
180 B
Bash
#!/bin/bash
|
|
|
|
I=0
|
|
while [[ I -lt $1 ]]
|
|
do
|
|
curl --location --request GET 'http://localhost:8080/g-series-15-3579-laptop_service-manual_en-us.pdf' > /dev/null &
|
|
I=$((I + 1));
|
|
done
|