Files
Spring/2025-07/spring-39-kafka-webflux/common/curlLoop.sh
T
2025-12-18 20:02:38 +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