从Perl使用nohup时如何抑制系统输出?

前端之家收集整理的这篇文章主要介绍了从Perl使用nohup时如何抑制系统输出?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Perl中,我使用nohup命令启动进程.命令如下:
system("nohup myproc pe88 &");

这工作正常,过程按预期开始.但是,我想抑制此命令的以下输出 – 这是:

Sending output to nohup.out

我必须让这个过程将它的所有输出重定向到nohup.out,但我只是不想在运行我的Perl程序时显示它.我想改为打印我自己的用户友好消息.我尝试过一些变种,但对我来说没有任何效果.

@R_404_323@

怎么样:
system("nohup myproc pe88 >nohup.out 2>&1 &");

nohup的手册页说:

@H_404_18@

If standard output is a terminal,
append output to ‘nohup.out’ if
possible,‘$HOME/nohup.out’ otherwise.
If standard error is a terminal,
redirect it to standard output. To
save output to FILE,use `nohup
COMMAND > FILE’.

因此,如果您明确地将STDOUT和STDERR重定向到nohup.out,那么nohup不会打印该消息.当然,如果nohup.out不可写,则不会自动回退到$HOME / nohup.out,但如果这是一个问题,您可以先检查它.

请注意,如果仅重定向STDOUT,nohup会打印“将stderr重定向到stdout”消息.

原文链接:https://www.f2er.com/Perl/241680.html

猜你在找的Perl相关文章