comparison build-and-run-job-scripts.sh @ 1:32210899a3dd draft

planemo upload commit 841d8b22bf9f1aaed6bfe8344b60617f45b275b2-dirty
author mingchen0919
date Sun, 30 Dec 2018 12:45:56 -0500
parents
children
comparison
equal deleted inserted replaced
0:6f94b4b9de44 1:32210899a3dd
1 # run job scripts within the tool outputs directory
2 cd ${REPORT_FILES_PATH}
3
4 #========== build and run job 1 script ============
5 cat >job-1-script.sh <<EOF
6 #------------ BELOW IS WHERE YOU WRITE YOUR OWN SHELL SCRIPT --------------
7
8
9 #------------ END OF SHELL SCRIPT ------------------------------------------
10 EOF
11
12 # run job 1 script
13 sh job-1-script.sh
14
15
16 #========== build and run job 2 script ============
17 cat >job_2_script.sh <<EOF
18 #------------ BELOW IS WHERE YOU WRITE YOUR OWN SHELL SCRIPT --------------
19
20
21 #------------ END OF SHELL SCRIPT ------------------------------------------
22 EOF
23
24 # run job 2 script
25 sh job_2_script.sh