repro_fig7a 366 B

12345678910111213141516171819
  1. #!/bin/bash
  2. # cd into the directory containing this script (from the bash faq 028)
  3. if [[ $BASH_SOURCE = */* ]]; then
  4. cd -- "${BASH_SOURCE%/*}/" || exit
  5. fi
  6. outfile=`hostname`.out
  7. (
  8. for t in 3 5 6 7 8 9 11; do
  9. for ((n=2*t-1;n<=25;n+=2)); do
  10. c=$n
  11. echo -n "# "; date
  12. ../target/release/arctic $n $t $c 10
  13. done
  14. done
  15. echo -n "# "; date
  16. ) | tee -a $outfile