[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Sheflug] Re: Questions about ftp scp, and uploading files in general
Matt
> Here is what I tried and what failed:
>local /home/me: rsync -e ssh -av tmp me [at] remote.path.uk:~/tmp
I know this sounds daft/stupid but did you have a look under
/etc/inetd.conf on the remote machine for a line which supports rsync
? It's highly unlikely that this is the problem but having already
don it to myself I thought I might mention it :)
--
Thanks
Richard
___________________________________________________________________
Sheffield Linux User's Group -
http://www.sheflug.co.uk/mailfaq.html
GNU the choice of a complete generation.
#!/usr/bin/perl -w
# Strip all line of this form from html messages
# From: "French, Alastair" <Alastair.French [at] racalinst.co.uk>
while (<>){
$_=~s/(^.*:.*[ <])(\w.*)(@.*)/$1nospam$3/;
print unless /^Delivered-To:/i ;
}