Message-ID: <1926521030.8175.1711625623020.JavaMail.confluence@host3.pipelinefx.com> Subject: Exported From Confluence MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_Part_8174_784514109.1711625623020" ------=_Part_8174_784514109.1711625623020 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Location: file:///C:/exported.html Using the --type and --data with qbsub to submit a job

Using the --type and --data with qbsub to submit a job

Here's a normal command line sleep 1000 qbsub:

qbsub sleep 1000

This is how you'd do it with the --data and --type:

qbsub --type cmdline --data '(=3D(cmdline=3Dsleep "1000"))'<=
/pre>

I found the data string by running

qbsub --xml --export job.xja sleep 1000

Examining the job.xja file for the <data></data> pair shows:=

<data>(=3D(cmdline=3Dsleep "1000"))</data>

So you should be able to submit an miGen job, check the xja file in the = job log directory for the <data> tags and use the contents as a templ= ate.

------=_Part_8174_784514109.1711625623020--