Skip to content

Instantly share code, notes, and snippets.

@ChristinaLK
Last active March 17, 2022 20:51
Show Gist options
  • Save ChristinaLK/a45ad24aeba7c79ad8782da27dde23ab to your computer and use it in GitHub Desktop.
Save ChristinaLK/a45ad24aeba7c79ad8782da27dde23ab to your computer and use it in GitHub Desktop.
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