Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.31 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. cd /usr/games/minecraft/
  4. python admin_console.py say one "Backing up the Server"
  5.  
  6. # Wait five seconds
  7. sleep 5
  8.  
  9. python admin_console.py backup one
  10.  
  11. # Waits until previous process is done
  12. # wait${!} here just in case
  13. wait
  14.  
  15. # Then runs this
  16. python admin_console.py say one "Backup complete"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement