需要一个脚本来调用其他进程/脚本并退出,但被调用的进程应该继续运行
我正在尝试运行一个脚本,该脚本在内部调用其他脚本
,但是主脚本应在调用后退出,并且调用的脚本应在后台独立运行。
我如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
nohup 将确保即使当前终端消失(例如,如果您关闭窗口),进程也会继续运行。
(为了明确起见:“&”将另一个脚本放在后台,这意味着第一个脚本将继续运行,而当第一个脚本退出时,第二个脚本不会退出。)
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.)
如果您的脚本是 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