我正在尝试编写一个脚本来在 centos 和 debian 上启动守护进程。
这是当前的伪脚本:
if [ =f "/etc/init.d/functions" ]
then
. /etc/unit.d/functions
alias STARTSTOPDAEMON=daemon
else
alias STARTSTOPDAEMON=start-stop-daemon
fi
但是我对别名有两种不同的语法......
我在 pastebin 上找到了这个,我想知道它是否可以跨发行版运行。
有什么建议吗?