I am running multiple jobs trying to have better performance results. To this end, I am generating a UUID and need the file name of the output to include this UUID.
Currently, I am defining the name of the output as follows: #SBATCH --output=/PATH/result.txt
and I am generating the UUID with this command: uuid= uuidgen -t
I need to add the generated uuid to the file name. How to do that? Thank you