My script calls a sub, Pod::Select::podselect(), which writes the pod sections
found in files to a named file or to STDOUT (default).
I want to collect those pod sections in a hash, %podstrings.
Is there a way to redirect that output back into my script?
Something more elegant than writing to a tempfile and then reading that
file back into my hash?
If podselect() returned the string, it would be easy - but it does not, and I don't wish to hack it.
#!/usr/bin/perl -w
use strict;
use File::Find;
use File::Slurp;
use Pod::Select;
my $dir = "h:/temp/TestAppNotes/Pod/";
my %podstrings;
find ( sub {
return if -d;
### I would like to assign
### $filestrings{$File::Find::name} = podselect $File::Find::name;
+
my $tmpfile = "$dir/tmpfile.txt";
podselect {-output => $tmpfile}, $File::Find::name;
if (-s $tmpfile) {
$podstrings{$File::Find::name} = scalar read_file($tmpfile)
}
}, $dir);
for (keys %podstrings) {
printf "%s %d\n", $_, -s $_;
}
__END__
Rudif
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.