如何在启动时运行.sh脚本

如何在启动时运行.sh脚本

可能重复:
如何在启动时运行 shell 脚本

我有 .sh 脚本来使用 mono 运行我的游戏服务器。我需要在启动时运行此命令

sh script.sh start

怎麼做?

答案1

把它放入/etc/rc.local

#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.

sh /path/to/script.sh start

或者在具有特殊激活参数的 cron 作业中:

crontab -e
@reboot /path/to/script.sh start

相关内容