监控linux中的nohup进程/将标准输出重定向到文件?

发布于 2024-10-13 05:43:37 字数 196 浏览 5 评论 0原文

# nohup svnsync synchronize svn://www.mysite.com/repos &

我正在运行上面的内容,它似乎工作正常(磁盘使用量正在增加),但我没有在 nohup.out 中看到任何日志记录

如何重定向标准输出,以便它在此文件中也可见(同时保持 nohup 部分完整)

# nohup svnsync synchronize svn://www.mysite.com/repos &

I'm running the above and it seems to be working fine (disk usage is increasing), but I'm not seeing any logging in nohup.out

How can I redirect standard output so that it is visible within this file as well (while keeping the nohup part intact)

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

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

发布评论

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

评论(1

野生奥特曼 2024-10-20 05:43:37

只需显式重定向其输出:

# nohup svnsync synchronize svn://www.mysite.com/repos > nohup.out &

Just explicitly redirect its output:

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