in reply to Re^2: how to use article() function in perl Net::NNTP module?
in thread how to use article() function in perl Net::NNTP module?

You can treat a (tied) filehandle just like any other filehandle. It acts like a filehandle, but maybe its data does reside in memory or somewhere else. As a consumer of data, you usually don't need to care about this.

... my $fh= $nntp->articlefh(...); while( <$fh>) { print "Article: $_\n"; }; ...

Replies are listed 'Best First'.
Re^4: how to use article() function in perl Net::NNTP module?
by zuverlassig (Novice) on Oct 21, 2013 at 12:13 UTC

    That worked very well, thanks for your help!! It was just a matter of correct syntax, which turns out to be pretty simple