I want to run it from a bash script but it is not accepting string input with spaces. It works with single words or hyphenated words. However the python command is correct and is working fine when I am running it directly from terminal.
commands.txt
python generate.py -p "Flower girl"
jobFile.sh
#!/bin/bash
srun $(head -n $SLURM_ARRAY_TASK_ID commands.txt | tail -n 1)
exit 0
Running the bash script with :
sbatch jobFile.sh
and getting the following error: error_screenshot
I appreciate any suggestions :) Thank you!
This was solved by changing contents of jobFile.sh
#!/bin/bash
srun python generate.py -p "Flower girl"
exit 0
commands.txt is not required anymore.