我想让脚本成为 自我守护 ,即无需在shell提示符下手动调用nohup $SCRIPT &>/dev/null &
。
我的计划是创建一段代码,如下所示:
#!/bin/bash
SCRIPTNAME="$0"
...
# Preps are done above
if [[ "$1" != "--daemonize" ]]; then
nohup "$SCRIPTNAME" --daemonize "${PARAMS[@]}" &>/dev/null &
exit $?
fi
# Rest of the code are the actual procedures of the daemon
这是明智的吗?你有更好的选择吗?
答案 0 :(得分:9)
以下是我看到的事情。
if [[ $1 != "--daemonize" ]]; then
不要那么== --daemonize?
nohup $SCRIPTNAME --daemonize "${PARAMS[@]}" &>/dev/null &
您可以只召唤一个放置在后台的子shell,而不是再次调用您的脚本:
(
Codes that run in daemon mode.
) </dev/null >/dev/null 2>&1 &
disown
或者
function daemon_mode {
Codes that run in daemon mode.
}
daemon_mode </dev/null >/dev/null 2>&1 &
disown