command_dev_debug.sh 335 B

123456789101112131415
  1. #!/bin/bash
  2. # LGSM dev_debug.sh function
  3. # Author: Daniel Gibbs
  4. # Website: http://gameservermanagers.com
  5. lgsm_version="281215"
  6. function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
  7. if [ -f ".dev-debug" ]; then
  8. rm .dev-debug
  9. fn_printoknl "Disabled dev-debug"
  10. else
  11. date > .dev-debug
  12. fn_printoknl "Enabled dev-debug"
  13. fi