11

我想让一个脚本自我守护,即不需要nohup $SCRIPT &>/dev/null &在shell提示符下手动调用。

我的计划是创建一段代码,如下所示:

#!/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

这是明智的吗?你有更好的选择吗?

4

1 回答 1

11

这是我看到的东西。

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
于 2013-09-23T08:39:21.103 回答