문제

# 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)

도움이 되었습니까?

해결책

Just explicitly redirect its output:

# nohup svnsync synchronize svn://www.mysite.com/repos > nohup.out &
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top