Gavin Henry wrote:
Dear all,

Hello,

Is it possible for me to write a perl cgi script that will echo the output from an rsync backup?

Sure, why not :)

Sorry, had to be done ;p

More info needed, code you've tried, how you're doing rsync, etc

Start with:

#!/usr/bin/perl

use strict;
use warnings;

use CGI;

print CGI::header();

print "Starting rsync...<br />\n";

# rsync code goes here

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>




Reply via email to