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). )
In reply to Re^3: Query on Perl system command
by Eliya
in thread Query on Perl system command
by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |