I used delay scheduling in SLURM and it has worked fine. Now I want to comment this out without deleting this; how can I do this?
#SBATCH --mem=50000 # Real memory (RAM) required (MB)
#SBATCH --begin=now+6hour # dealy scheduling
#SBATCH --time=4:00:00 # Total run time limit (HH:MM:SS)
You can comment or break the
#SBATCHtoken any way you want while still leaving it as a valid Bash comment.For instance:
or,
or even,