I am using a bash script and using the command uuidgen
to generate UUIDs. However it is quite slow when invoked in a loop. Are there any alternatives I can invoke directly from bash?
I'm guessing the slowness is actually just invoking and stopping the process each loop iteration, not necessary uuidgen
being slow code itself.