I want an output file each time I run a job.
I know I could type: #SBATCH --output=Outputfile.txt
on my script.
If I want to identify my output file by job I know I can add %J
Currently I am doing this:
#SBATCH --output=/PATH_TO_SOME_DIR/Outputfile_%J.txt
If I intend to run the same job a few times, is there a way to append each run and have the job identified to the same output file? Thanks!