changeset 28:70c04a452599

fix missing use of $t
author Henry S. Thompson <ht@inf.ed.ac.uk>
date Wed, 18 Mar 2020 21:52:06 +0000
parents 7a2bc060230d
children a95a1b31f5e9
files bin/masterMaster.sh
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/bin/masterMaster.sh	Wed Mar 18 15:23:53 2020 +0000
+++ b/bin/masterMaster.sh	Wed Mar 18 21:52:06 2020 +0000
@@ -1,5 +1,5 @@
 #!/bin/bash
 # This runs on login machine to launch the real job (named by $1) on two machines
 echo $(date) Launching master workers for "$@"
-seq 1 -1 0 | parallel --will-cite --joblog master_$1.log -S r1i5n1 -S r1i5n0 -N 1 --workdir /dev/shm --transferfile test_'{}'.txt $HOME/bin/$1.sh '{}'
+seq 1 -1 0 | parallel --will-cite --joblog master_$1.log -S r1i5n1 -S r1i5n0 -N 1 --workdir /dev/shm --transferfile $1_'{}'.txt $HOME/bin/$1.sh '{}'
 echo $(date) "$@" workers done