feat: add script

This commit is contained in:
3lswear
2022-02-05 15:06:47 +03:00
parent b243ca893b
commit e37dbf50a7

8
curls.sh Normal file
View File

@@ -0,0 +1,8 @@
#!/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