in reply to @INC Question
1. The error you get shows that Net::FTP is not in the standard @INC path. Have you installed the module? I don't know if it is now in the standard distribution but it didn't used to be.
2. If you have installed it but not to the standard directory, you should add that directory to @INC. Do not push to @INC, rather do this:
Before you call use Net::FTPuse lib '/export/local/perl'
-- iakobski
|
|---|