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

siliconpi
  • 8,105
  • 18
  • 69
  • 107

1 Answers1

0

Just explicitly redirect its output:

# nohup svnsync synchronize svn://www.mysite.com/repos > nohup.out &
  • actually it was working fine (but there were long gaps between updates), but your answer looks like it would work – siliconpi Jan 28 '11 at 01:44