TABLE OF CONTENTS
::pwtk::queue::fprint
SYNOPSIS
proc ::pwtk::queue::fprint {queueSystem {scriptName ""}} {
PURPOSE
Writes to file the content of the whole script for the queueSystem.
ARGUMENTS
- queueSystem -- name of batch queuing system (e.g. slurm, ll, lsf, ...)
- scriptName -- filename of script that will be written (optional, default = job.queue)
SOURCE
if { $scriptName == "" } { set scriptName job.$queueSystem } ::pwtk::writeFile $scriptName [getScript $queueSystem] }