需要一个脚本来调用其他进程/脚本并退出,但被调用的进程应该继续运行

发布于 2024-09-07 01:27:48 字数 133 浏览 3 评论 0原文

我正在尝试运行一个脚本,该脚本在内部调用其他脚本

,但是主脚本应在调用后退出,并且调用的脚本应在后台独立运行。

我如何在 shell 脚本中实现这一点?或者还有其他替代方法可以做到这一点吗?

注册, 森尼

I'm trying to run a script, which internally invokes other script

but, the main script should exit after invoking and the invoked script should run independently on the background.

How can i achieve this in shell scripting? or is there any other alternative way to do this?

Regrads,
senny

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

筑梦 2024-09-14 01:27:48
nohup otherscript &

nohup 将确保即使当前终端消失(例如,如果您关闭窗口),进程也会继续运行。

(为了明确起见:“&”将另一个脚本放在后台,这意味着第一个脚本将继续运行,而当第一个脚本退出时,第二个脚本不会退出。)

nohup otherscript &

The nohup will ensure that the process keeps running even if the current terminal goes away (for example if you close the window).

(Just to make it clear: the "&" puts the other script in the background, which means the first will keep running, and the second script won't exit when the first one does.)

东北女汉子 2024-09-14 01:27:48

如果您的脚本是 Perl 语言,请使用 exec() 命令启动第二个脚本。
exec() 执行命令后立即返回,调用脚本可以退出,而第二个脚本继续运行。

http://perl.about.com/od/programmingperl/qt/perlexecsystem。嗯

If your script is in Perl, use exec() command to start the second script.
exec() returns immediately after executing the command, and the calling script can exit, while the second script keeps running.

http://perl.about.com/od/programmingperl/qt/perlexecsystem.htm

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文