I need to download this page multiple times, it returns a different result each time it is accessed:
i="0"
while [ $i -lt 10 ]; do
curl -O http://httpbin.org/bytes/128
i=$[$i+1]
done
But every time the curl command is executed, the previous file is overwritten, since the name is the same.
How do I not overwrite? Names could be sequential ex. "128 (1)", "128 (2)", ..., "128 (n)".