This is what I use to check if a website has changed. It makes an MD5
string.

#!/usr/bin/perl

use LWP::Simple;
use Digest::MD5 md5_hex;

for (@ARGV) {
$url = $_;

$content = get($url);

$digest = md5_hex($content);

print "$digest";

}

exit();
"Arran" <[EMAIL PROTECTED]> wrote in message
056401c1f816$8dd378e0$0100a8c0@narusagawa">news:056401c1f816$8dd378e0$0100a8c0@narusagawa...
> Is it possilble to MD5 multi lines so the output code is only 1 line?
>
> Should it do this any way?
>
> WHat would the code look like:
>
> thnxs in adv :)
>
>
> From: Arran
>
> song: "If you are sexy and you know it clap your hands"
> Me: im going to go have to sit this one out...
>
> If builders built buildings the way programmers wrote programs, then the
> first woodpecker to come along would destroy civilization.
>
> We are the out casts of society, but when they relise its the out casts
that
> create society, we will fall.
>
> Everything I know about thermal expansion I learnt from Neon Genesis
> Evangelion!
>
>



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to