Basically, you can use the system command:
system("c:\somepath\some.exe");
or you can use backticks, such as:
`c:\somepath\some.exe`;
And yet another solution is to use the open command:
open(FH, "c:\somepath\some.exe |");
close(FH);
Comatose
Taboo Programmer
2,910 posts since Dec 2004
Reputation Points: 361
Solved Threads: 215