Files
Spring/2023-11/spring-41-kafka-webflux/client/curlLoop.sh
T
2024-05-13 23:45:21 +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