Thats what I've been doing. The entire script is >> to a logfile.
#!/usr/bin/perl
print "To run svn commit\n";
$thetime=time;
system "cd ~/docs; /usr/bin/svn commit --message '$thetime' \n";
system "cd ~/docs; /usr/bin/svn info \n";
I see the "svn info" in the logfile, but I see no r
I've been struggling all morning with what should be a very simple problem.
I would like to commit and update a svn repository daily using cron. I've
encapsulated my svn calls into a perl script, which runs the following
#!/usr/bin/perl
print "To run svn commit\n";
$thetime=time;
system "
Where is svn's stderr?
I've been struggling all morning with what should be a very simple problem.
I would like to commit and update a svn repository daily using cron. I've
encapsulated my svn calls into a perl script, which runs the following
#!/usr/bin/perl
print "To run svn commit\n";
$thetime=time;
system "