Guest User

Untitled

a guest
May 24th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. #!/bin/sh
  2. /usr/local/tomcat/bin/catalina.sh run &
  3. status=$?
  4. if [ $status -ne 0 ]; then
  5. echo "Failed to start my_first_process: $status"
  6. exit $status
  7. fi
  8.  
  9. ./second.sh -D
  10. status=$?
  11. if [ $status -ne 0 ]; then
  12. echo "Failed to start my_first_process: $status"
  13. exit $status
  14. fi
Add Comment
Please, Sign In to add comment