![]() |
ldasJob { -name {} -password {} -email {} } { userCmd -opt1 {} ... }
Which is in the format of a Tcl command, ldasJob, with two required arguments:
Calling convention (all on a single line):
ldasJob { -name "username" -password "********" -email "user@foobar.edu" } { stageData -urls Tcl list of URL's -subdirectory subdirectory name -returnprotocol ftp, http or {} -overwrite 1, 0 or -1 -cleanup 1 or 0 -subject {freeform string} }
Option Descriptions:
-urls: { list of valid URL's }
-subdirectory: subdirectory
You want to specify the subdirectory if you are transferring data
which will subsequently be used many times and you are sure that
the files will not be overwritten by yourself or another user.
-overwrite: [ -1 0 1 ]
-cleanup: [ 0 1 ]
-returnprotocol: http ftp
The default behaviour is to return a local path which is only
usable for referencing the data from the local LDAS.
In any case, this option is provided to aid in the development
of automated scripts for driving LDAS jobs, by providing them
with valid URL's which can be parsed or published on the web
as links.
-subject: freeform string
Required
Valid URL's are ftp and http URL's that are on anonymously
accessible servers.
Optional
Specify when you want the transferred files to be written into
a user specified directory and not into the normal job directory
hierarchy.
Optional, defaults to 1
Possible values and their implications:
Optional, defaults to 1
Possible values and their implications:
if a subdirectory is not specified this option has no effect.
Optional, defaults to 'file'
When set to http or ftp, the return message will contain a URL
which can be used to refer to the data in future user commands
processed by the local LDAS system or any remote LDAS system.
Optional, defaults to 'results'
Used as the subject line in the email returned after successful
completion of the user command.
Return to Top