Using the following code:

#!/usr/bin/perl -w use strict; use Net::Netrc; use Tie::File; use vars qw($CONF); $CONF = '/data/retprep/retlogs/retrieve.conf'; my @conf; tie @conf, 'Tie::File', $CONF or die("Unable to tie config file $CONF: + $!"); print "There are ". scalar(@conf), " records in config file $CONF\n"; foreach $_ (@conf) { chomp; my ($retid, $host, $files, $freq, $proto, $depricated, $prev_fdate +, $opts, $start_day) = split(/:/,$_,9); print "$host\n"; my $mach = Net::Netrc->lookup($host) || die $!; }

My script locks up with no error and I have to cntl-c to get back to my prompt.
My output is as follows:

There are 3 records in config file /data/retprep/retlogs/retrieve.conf ftp.some_domain.com/pub
If I comment out the Net::Netrc lookup then the script works fine. This of course is only a very trimmed down version of my actual script for automated ftp retrieval.

Prior to this I was not using Tie::File I was just openning the file and slurping it into an array. This too worked fine.

My system is an HP-UX 11 perl v5.6.1

If anyone has any suggestions I'd be eternally grateful.

TIA

Sweetblood


In reply to Problem using Net::Netrc and Tie::File by sweetblood

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.