Files
Spring/2025-05/spring-39-kafka-webflux/client/curlLoop.sh
T
2025-10-20 21:15:25 +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