#!/usr/bin/perl -w =head1 NAME ftp-watch.pl - Simple reporting for updates on remote FTP server. =head1 DESCRIPTION When run first time, this script generates a file with recursive listi +ng of some directory on remote FTP server. Any other script execution wi +ll cause it to report differences in directory listing using GNU diff for +mat. =cut use Text::Diff; use Net::FTP::Recursive; use strict; # # Settings # my $host = 'ftp.linux.dom'; # Server my $user = 'anonymous'; # Username my $pass = 'me@here.com'; # Password my $dir = '/pub/people/leonid/'; # Top directory to monitor my $listing_file = '/tmp/ftp.real'; # Keep listing in this file my $listing_temp = '/tmp/ftp.temp'; # Temporary file # Get FTP listing open (OUT, ">$listing_temp") or die "Couldn't open $listing_temp ($@)" +; my $ftp = new Net::FTP::Recursive($host) or die "Couldn't connect ($@) +";; $ftp->login($user,$pass) or die "Couldn't login ($@)"; $ftp->cwd($dir) or die "Couldn't change directory ($@)"; $ftp->rls(Filehandle=>*OUT); $ftp->quit(); close (OUT); # Create empty data file if does not exist if (! -e $listing_file) { warn "No local listing...creating empty"; open (OUT, ">$listing_file") or die "Couldn't open $listing_file($ +@)"; close (OUT); } # Compare open (IN1, "<$listing_file") or die "Couldn't open $listing_file ($@)" +; open (IN2, "<$listing_temp") or die "Couldn't open $listing_temp ($@)" +; my $diff = diff \*IN1, \*IN2; close (IN2); close (IN1); # Clean-up rename ($listing_temp, $listing_file) or warn "Couldn't update info ($ +@)"; # Output results print $diff,"\n"; =head1 AUTHOR Leonid Mamtchenkov <leonid@leonid.maks.net> =cut

In reply to ftp-watch.pl by TVSET

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.