TABLE OF CONTENTS
::pwtk::sh::submit
SYNOPSIS
proc ::pwtk::sh::submit {{scriptName job.sh}} {
DESCRIPTION
Submit a job as plain sh script.
ARGUMENTS
- scriptName -- filename to which the sh shell scipt file will be stored (optional, default = job.sh)
SOURCE
::pwtk::writeFile $scriptName [::pwtk::queue::getScript sh] puts "exec sh $scriptName > $scriptName.log &" catch {exec sh $scriptName > $scriptName.log &} }