gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
250 B
13 lines
250 B
#!/bin/bash
|
|
# LinuxGSM core_trap.sh function
|
|
# Author: Daniel Gibbs
|
|
# Website: https://linuxgsm.com
|
|
# Description: Handles CTRL-C trap to give an exit code.
|
|
|
|
fn_exit_trap(){
|
|
echo ""
|
|
core_exit.sh
|
|
}
|
|
|
|
# trap to give an exit code.
|
|
trap fn_exit_trap INT
|