comparison bin/masterMaster.sh @ 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 a9a9f6f1832e
children 4c23b1766692
comparison
equal deleted inserted replaced
27:7a2bc060230d 28:70c04a452599
1 #!/bin/bash 1 #!/bin/bash
2 # This runs on login machine to launch the real job (named by $1) on two machines 2 # This runs on login machine to launch the real job (named by $1) on two machines
3 echo $(date) Launching master workers for "$@" 3 echo $(date) Launching master workers for "$@"
4 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 '{}' 4 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 '{}'
5 echo $(date) "$@" workers done 5 echo $(date) "$@" workers done