wrong batch example (shebang)

At https://doc.zih.tu-dresden.de/jobs_and_resources/slurm/

The example of "Job files" is not working #!/bin/bash # Batch script starts with shebang line

The comment after the shebang must be removed otherwise the system tries to execute the entire line and return an error: /bin/bash: # Batch script starts with shebang line: No such file or directory

The solution is to remove the comment