SGI-FAM-1.002

SGI-FAM-1.002

am 23.02.2006 07:30:18 von chinzi

hey ..
i am using SGI-FAM module for monitoring files .. i have typd this code
...

#!/usr/bin/perl
use strict;


use SGI::FAM;


my $conn = new SGI::FAM;
$conn->monitor( "/var/log/messages" );


while (1) {
my $event = $conn->next_event;
print $event->filename, " ", $event->type, "\n";
}

but nw i want to get it working for remote system .. how do i do it???