Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. mwhaycraft

    Net::FTP Question . . .

    What kind of ftp server are you connecting to? A put *SHOULD* be all that is needed. Is this a mainfraime? you may need to $ftp->quot( "COMMAND HERE" ) to tell the ftp server to go into overwrite mode (or what ever it is called) you may be able to find this out by manually connecting via...
  2. mwhaycraft

    .msg parsing question.

    I'd also recomend not slurping the directory handle if it has a ton of files. On a side note I also recomend placing your file handles in a local() statement to keep them unique... local( *EM_DH, *FH, $/ ); # get list of messages from $Backup_Path directory opendir(EM_DH, $Backup_Path) or die...
  3. mwhaycraft

    Must be an easier way

    Here is a more readable version which uses hashes. This will make any code which works with particular columns of the data more readable: #columns we are processing my @ticColTotNames = qw( Start Open Closed End Total Changes Telco Power Server App); my @ticColNames = ( qw( Tier Sev Type )...

Part and Inventory Search

Back
Top