Mercurial > repos > mingchen0919 > aurora_curl
annotate build-and-run-job-scripts.sh @ 2:350afb9412fc draft default tip
planemo upload
author | mingchen0919 |
---|---|
date | Mon, 14 May 2018 16:58:24 -0400 |
parents | 7a3bb304fe1d |
children |
rev | line source |
---|---|
0 | 1 # run job scripts within the tool outputs directory |
2 cd ${REPORT_FILES_PATH} | |
3 | |
4 #========== build and run job 1 script ============ | |
5 cat >curl-download.sh <<EOF | |
2 | 6 curl $X_u > output.$X_n |
7 cp output.$X_n ${JOB_WORKING_DIR} | |
0 | 8 EOF |
9 | |
10 # run job 1 script | |
11 sh curl-download.sh | |
12 |