in reply to Re^2: Query on Perl system command
in thread Query on Perl system command

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). )

Replies are listed 'Best First'.
Re^4: Query on Perl system command
by Anonymous Monk on Mar 04, 2011 at 18:35 UTC
    Thank you Eliya :-)

    Yes, you are right, open command is much easier to read and it works perfectly well.

    Chak