Difference between revisions of "Application examples"
(→Generic examples) |
|||
| Line 1: | Line 1: | ||
== Generic examples == | == Generic examples == | ||
| + | |||
| + | <pre>& | ||
| + | (executable=run.sh) | ||
| + | (wallTime="5 minutes") | ||
| + | (stdout="stdout.txt") | ||
| + | (stderr="stderr.txt") | ||
| + | (inputFiles=("run.sh" "")) | ||
| + | (outputFiles=("/" "")) | ||
| + | </pre> | ||
| + | |||
| + | <pre>#!/bin/sh | ||
| + | echo "Hello, grid" | ||
| + | </pre> | ||
== Octave / MATLAB examples == | == Octave / MATLAB examples == | ||
Revision as of 16:32, 11 October 2011
Contents
Generic examples
&
(executable=run.sh)
(wallTime="5 minutes")
(stdout="stdout.txt")
(stderr="stderr.txt")
(inputFiles=("run.sh" ""))
(outputFiles=("/" ""))
#!/bin/sh echo "Hello, grid"