TABLE OF CONTENTS
::pwtk::queue::setTail
SYNOPSIS
proc ::pwtk::queue::setTail {queueSystem content} {
PURPOSE
This proc sets (append) the so-called optional "tail" (last part) part of the queuing script. For example, some post-processing analysis can be done here, like grep for some results of calculations performed in the body of the script.
ARGUMENTS
- queueSystem -- name of batch queuing system (e.g. slurm, ll, lsf, ...)
- content -- the content of the "tail" part of the script
SOURCE
variable scriptTail append scriptTail($queueSystem) "$content\n" }