in reply to Re^2: pattern matching with wildcards...
in thread pattern matching with wildcards...

Net::FTP::Simple is pure Perl, so if the server-admins refuse (for no good reason) to install it, you can still include it in your own home-folder or even as part of your own script.

Have a look at Yes, even you can use CPAN.

CountZero

A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James

  • Comment on Re^3: pattern matching with wildcards...

Replies are listed 'Best First'.
Re^4: pattern matching with wildcards...
by mikerzz (Acolyte) on May 12, 2009 at 17:54 UTC
    CountZero, Thanks again for the reply. Yes, I could install the Net::FTP::Simple module in my home directory, but this perl script will not be run from the server where I am developing it. It will be run from a production server that I have no access to. Mike R
      Then include the module as part of your script.

      CountZero

      A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James

        How would I include the module as part of the script? That sounds like the right road to travel down.