in reply to Getting remote files

I'm not really sure this is what you mean, but you can use LWP for fetching files that can be reached with an URL or Net::SSH if you need to get it with SSH.

A short example with LWP::Simple :

use LWP::Simple; my $document = get("http://some.site/filename.extention");
Read the docs for LWP for much more info :-)
-- Joost downtime n. The period during which a system is error-free and immune from user input.