in reply to logging of win32::process

You're trying to pipe the output to the "tee" command, which is an Unix command and probably isn't available on windows unless you installed Cygwin or a similar utility package.
Of course you could install Cygwin, but.... ;) This node 453546 relates closely to your problem and may provide some answers, like the module IO::Tee.

Replies are listed 'Best First'.
Re^2: logging of win32::process
by Rambo (Initiate) on May 04, 2005 at 14:02 UTC
    hi, thanks for response! to using tee it's just a test for me but does't work,
    my problem is how can i implement the logging on win32::process?
    something like this
    start logging
    start process
    end process
    stop logging
    and everything needs to be on console and file.
      I understand your problem. Please check the links I provided; IO::Tee is a perl package that provides the "tee" command functionality to your scripts, so it should fit your need, and there may be some other suggestions in the node I mentioned.
        i checked that already :-) but can't realy understand it how to implement this in my short script sorry.
        i'am not really good programer :-(