On Mon, 22 May 2000 10:14:03 -0700, Fauzi  Ashurex <[EMAIL PROTECTED]>
wrote:


>1- open(FOO, "gettag.pl -q $TagName |");

Try
    open(FOO, "$^X gettag.pl -q $TagName |");


>I have used all those techniques in the past and I know they should work! 
>Am I missing something?

Programs started using shell associations don't inherit file handles.
Only processes started using CreateProcess do so (.bat, .cmd, .com and
.exe).  $^X in the string above is the fully qualified pathname to the
currently executing perl.exe.

-Jan

---
You are currently subscribed to perl-win32-users as: [archive@jab.org]
To unsubscribe, forward this message to
         [EMAIL PROTECTED]
For non-automated Mailing List support, send email to  
         [EMAIL PROTECTED]

Reply via email to