Have you also tried without the -e option? Not all echos require that option, and in the other thread it looks like your echo doesn't.
Another approach would be to do away with system, echo, quoting issues, etc. and use open to open a pipe to phylip, into which you then just print the required input, including newlines. For example:
open my $pipe, "| phylip" or die $!;
print $pipe <<"EOI";
4
6
3
5
1
$filename.fsmi
5
$filename.phb
111
1000
4
$filename.ph
$filename.dst
x
EOI
close $pipe;
A positive side effect is that the sequence of things you have to enter becomes much better to read.
(Note that the heredoc, as shown, is interpolating $filename (like a double-quoted string). )
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|