Last active
March 17, 2022 20:51
-
-
Save ChristinaLK/a45ad24aeba7c79ad8782da27dde23ab to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
executable = run_python.sh | |
arguments = $(cw) $(hfiii) $(hfii) $(hfi) $(l) | |
transfer_output_remaps = "$(cow)_$(heiferIII)_$(heiferII)_$(heiferI)_$(calf).tar.gz=$(cow)/$(calf)/$(cow)_$(heiferIII)_$(heiferII)_$(heiferI)_$(calf).tar.gz" | |
queue cw,hfiii,hfii,hfi,l from csv | |
------ | |
#!/bin/bash | |
cow=$1 | |
heiferIII=$2 | |
heiferII=$3 | |
heiferI=$4 | |
last=$5 | |
python3 script.py $cow $heiferIII ${heiferII} ${heiferI} ${last} | |
# equivalent to | |
python3 script.py $1 $2 $3 $4 $5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment