Advertisement
Guest User

Untitled

a guest
Apr 7th, 2020
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.21 KB | None | 0 0
  1. #!/bin/sh
  2. # See how we were called
  3. case$1in
  4. start)
  5.     echo “Ini adalah start”;;
  6. stop)
  7.     echo “Ini adalah stop”;;
  8. *)
  9. echo $”Usage:$0 {start|stop|restart|reload|status};;
  10. esac
  11. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement