You can generate sequences in Bash using the following syntax.
# Syntax:
for i in {1..200}; do <command>; done
# Example:
for i in {1..200}; do printf "id: %s\n" "$(uuidgen)"; done
You can generate sequences in Bash using the following syntax.
# Syntax:
for i in {1..200}; do <command>; done
# Example:
for i in {1..200}; do printf "id: %s\n" "$(uuidgen)"; done