Files
Spring/2024-01/spring-40-kafka-webflux/client/curlLoop.sh
T
2024-07-09 21:05:27 +03:00

5 lines
102 B
Bash
Executable File

date
for run in {1..100000}; do
curl -s "http://localhost:8082/data-mono/$run" > /dev/null
done
date