ens-ulm-1-2015

google hashcode 2015 source for team ens-ulm-1
git clone https://a3nm.net/git/ens-ulm-1-2015/
Log | Files | Refs

run.sh (123B)


      1 #!/bin/bash
      2 
      3 trap 'kill $(jobs -p)' EXIT
      4 
      5 ssh "$1" pkill a.out
      6 scp input $1:$2
      7 ssh "$1" "cd $2; ./runtillbetter.sh $3 $4"
      8