Title here
Summary here
while :; do sleep 5; echo "Hello"; done
for i in {1..10}; do sleep 5; done
Another way, this time pushing the output to a file and then sorting/inspecting the output.
for i in $(seq 1 100); do echo "$(date; sleep 1)"; done > output; cat output | sort | uniq -c
for _ in {1..100}
do
printf "GET / HTTP/1.1\r\nConnection: close\r\n"
done
| nc -U /path/to/socket.sock