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