in reply to Re: Using SYSTEM2 on Windows
in thread Using SYSTEM2 on Windows
works fine.#!/usr/bin/perl -w use strict; # running Active state 5.10 use IPC::Run3; run3 ("dir C:/");
Update:
if you read the params to run3, you can give it handles
for stdin, stdout, stderr, etc. run3 appears to be implemented on *nix as well as Windows, so I don't think you need any special Windows vs *nix code.
|
|---|