in reply to Re: Re: forking in winblows ?
in thread forking in winblows ?
then use the system call and read the output in perl:test.bat -------- dir c:\some\path\ >>c:\path\to\test.txt
system("c:\path\to\test.bat"); open(OUTPUT, "<c:/path/to/test.txt") || die "couln't open ...yadda..." +; @output=<OUTPUT>; close(OUTPUT);
|
|---|