install_header.sh 530 B

123456789101112131415161718
  1. #!/bin/bash
  2. # LGSM install_header.sh function
  3. # Author: Daniel Gibbs
  4. # Website: https://gameservermanagers.com
  5. # Description: Prints installation header.
  6. local commandname="INSTALL"
  7. local commandaction="Install"
  8. local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
  9. clear
  10. echo "================================="
  11. echo "${gamename}"
  12. echo "Linux Game Server Manager"
  13. echo "by Daniel Gibbs"
  14. echo "Contributors: http://goo.gl/qLmitD"
  15. echo "https://gameservermanagers.com"
  16. echo "================================="