Re: Matching arrays/hashes (swish-e and SQL)

2005-11-06 Thread Bill Moseley
per; print Dumper [EMAIL PROTECTED]; Maybe better, if you don't trust swish and the db to be in sync: my @results = map { $recs->{$_} } grep { exists $recs->{$_} } @ids; Or whatever should happen when an item is not found. -- Bill Moseley [EMAIL PROTECTED]

Re: Email and perlscripts

2005-10-20 Thread Bill Moseley
command like > > cat mbox | ./fundlist.pl > > I can't figure out how to automate this. Any ideas? Try procmail. It can pipe an email to a program when it is received. -- Bill Moseley [EMAIL PROTECTED]

Re: automagically create browsable POD pages

2004-04-01 Thread Bill Moseley
.perl.org is Pod that changes > automagically behind the scenes. DocSet uses TT to generate output, too. Yea TT2! ;) -- Bill Moseley [EMAIL PROTECTED]

Re: automagically create browsable POD pages

2004-04-01 Thread Bill Moseley
On Thu, Apr 01, 2004 at 10:33:00AM -0500, Eric Lease Morgan wrote: > > Is there some sort of incantation I can send to a Perl-generated > Makefile in order to automagically create browsable POD pages? Might look at DocSet on CPAN. perl.apache.org is generated with it from pod files.