Advertisement
Guest User

Untitled

a guest
Oct 10th, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.28 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. echo Killing existing rmiregistry
  4. if pgrep rmiregistry; then pkill rmiregistry; fi
  5. sleep 1
  6.  
  7. echo Starting rmiregistry
  8. rmiregistry &
  9. sleep 1
  10.  
  11. java CalculatorServer &
  12. sleep 1
  13.  
  14. java CalculatorServerBonus &
  15. sleep 1
  16.  
  17. echo Running Test Suite
  18. java TestManager
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement