Set the default SLURM template path
slurm_template_set.RdSet the default SLURM template path
Examples
# Set a custom template path (temporarily, without persisting)
temp_file <- tempfile(fileext = ".tmpl")
writeLines("#!/bin/bash", temp_file)
slurm_template_set(temp_file, persist = FALSE)
# Clean up
unlink(temp_file)