test_complete_run.sh 469 B

123456789101112131415161718192021222324252627
  1. #!/bin/bash
  2. _evalBg() {
  3. eval "$@" &>/dev/null &disown;
  4. }
  5. short_all="./test_med.sh"
  6. short_re="./test_re_med.sh"
  7. for i in {1..3}
  8. do
  9. echo "Starting short recycle iteration ${i}";
  10. _evalBg "${short_all}";
  11. _evalBg "${short_re}";
  12. sleep 180s
  13. done
  14. for i in {1..20}
  15. do
  16. echo "Starting all_big iteration and one recycling ${i}"
  17. /bin/bash ./test_all_big.sh
  18. /bin/bash ./test_re_big.sh
  19. echo "Waiting 20 Minutes"
  20. sleep 1200s
  21. done
  22. echo "All done"