0
I need to download this page several 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 each time the Curl command is executed, the previous file is overwritten, since the name is equal.
How do I not overwrite? The names could be sequential ex. "128 (1)", "128 (2)", ..., "128 (n)".