in reply to Re: Opening external files with arguements
in thread Opening external files with arguements

Three arguements form? Would you mind giving me a (simple) example?
  • Comment on Re^2: Opening external files with arguements

Replies are listed 'Best First'.
Re^3: Opening external files with arguements
by blazar (Canon) on Apr 28, 2005 at 15:52 UTC
    Three arguements form? Would you mind giving me a (simple) example?
    I must say i'm tempted to say: no! For I'm not here (and nobody is) to replace the best tool to answer this kind of questions, that is Perl's excellent documentation.

    However...

    open my $fh, '|-', "whatever" or die $!; # or open my $fh, '|-', "whatever", @more_args or die $!;