在后台运行当前的bash脚本

前端之家收集整理的这篇文章主要介绍了在后台运行当前的bash脚本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
通常我会添加“&”在背景中开始我的过程的角色,例如:
user@pc:~$my_script &

但是如何在没有“&”的背景下制作它性格?

#!/bin/bash

#What can I add here to hide current process ($$) and to release focus ?

start_server()
{   
    #my script here with infinite loop ...
}

多谢你们.

#!/bin/bash

if [[ "$1" != "--nodaemon" ]]; then
    ( "$0" --nodaemon "$@" </dev/null &>/dev/null & )
else
    shift
fi

#...rest of script

这样做是检查它的第一个参数是否是“–nodaemon”,如果是这样的话,在背景中使用参数“–nodaemon”将其自身(“$0”)关闭,这将阻止它尝试重新-background本身处于一种无限循环中.

请注意,将此作为脚本中的第一件事将使其始终在后台运行.如果它只需要在某些条件下进入后台(例如,当使用参数“start”运行时),则必须相应地调整它.也许是这样的:

#!/bin/bash

start_server()
{   
    #my script here with infinite loop ...
}

if [[ "$1" = "start" ]]; then
    ( "$0" start-nodaemon </dev/null &>/dev/null & )
elif [[ "$1" = "start-nodaemon" ]]; then
    start_server
elif #.....
原文链接:https://www.f2er.com/bash/386863.html

猜你在找的Bash相关文章