This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# 该脚本会关闭服务器进行备份,适用于在linux tmux中开服的童鞋 | |
set -euo pipefail | |
# tmux 会话名字 | |
sessionName=mc | |
# 服务器关闭警告信息 | |
stopDelay=10 | |
stopWarn=服务器将在${stopDelay}秒后关闭进行备份 |