6 lines
57 B
Bash
6 lines
57 B
Bash
#!/bin/bash
|
|
|
|
for i in {1..20}
|
|
do
|
|
curl 10.0.17.8
|
|
done
|