Bryan882 has asked for the wisdom of the Perl Monks concerning the following question:
function fConvert { perl -e ' use strict; use warnings; use RTF::TEXT::Converter; my $result; my $object = new RTF::TEXT::Converter(output => \$result); if (@ARGV) { foreach my $filename (@ARGV) { $object->parse_stream($filename); print $result; $result = ''; } } ' }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Perl and Shell (Delimiter)
by LanX (Saint) on Jul 02, 2018 at 14:49 UTC | |
|
Re: Perl and Shell (text conversion) (updated)
by haukex (Archbishop) on Jul 02, 2018 at 16:54 UTC | |
|
Re: Perl and Shell (text conversion)
by Your Mother (Archbishop) on Jul 02, 2018 at 17:19 UTC | |
by LanX (Saint) on Jul 02, 2018 at 17:48 UTC | |
by Your Mother (Archbishop) on Jul 02, 2018 at 18:57 UTC | |
|
Re: Perl and Shell (text conversion)
by jeffenstein (Hermit) on Jul 02, 2018 at 15:14 UTC | |
|
Re: Perl and Shell (text conversion)
by Bryan882 (Novice) on Jul 03, 2018 at 07:29 UTC |