mirror of https://github.com/ecmwf/eccodes.git
6 lines
51 B
Bash
6 lines
51 B
Bash
|
#!/bin/ksh
|
||
|
set -e
|
||
|
job=$1
|
||
|
out=$2
|
||
|
$job > $out 2>&1 &
|