我想知道是否有一种方法可以在 bash 脚本内运行程序而不执行孤立进程。换句话说,我想用 bash 脚本启动一个进程,但我不希望这个进程成为孤立进程。
答案1
你需要让父母活着。所以在脚本中要求它等待:
start_the_process &
wait $! #or without the parameter to wait for all
现在使用以下任一方法调用脚本:
script
或者
script &
将其置于后台。
我想知道是否有一种方法可以在 bash 脚本内运行程序而不执行孤立进程。换句话说,我想用 bash 脚本启动一个进程,但我不希望这个进程成为孤立进程。
你需要让父母活着。所以在脚本中要求它等待:
start_the_process &
wait $! #or without the parameter to wait for all
现在使用以下任一方法调用脚本:
script
或者
script &
将其置于后台。