in reply to running exe from perl (again)
use warnings; use strict ; my $temp = '"C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\bi +n\vcvars32.bat"'; my $cmd = "start $ENV{comspec} /k $temp"; if (system ($cmd)) { warn 'command failed with '.$? >> 8; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: running exe from perl (again)
by Anonymous Monk on Oct 18, 2009 at 05:04 UTC |