Skip to content
Snippets Groups Projects

Resolve #456

Merged Martin Schroschk requested to merge issue456 into preview
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -367,9 +367,9 @@ In the following we provide two examples for scripts that submit chain jobs.
fi
job_cmd="${job_cmd} ${job_file}"
echo -n "Running command: ${job_cmd} "
out=`${job_cmd}`
out="$(${job_cmd})"
echo "Result: ${out}"
dependency=`echo ${out} | awk '{print $4}'`
dependency=$(echo "${out}" | awk '{print $4}')
done
```
Loading