监控linux中的nohup进程/将标准输出重定向到文件?
# 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需显式重定向其输出:
Just explicitly redirect its output: