how do I call a .exe file from my perl script?
samatha.kilaru 0 Newbie Poster
Recommended Answers
Jump to PostBasically, 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);
All 3 Replies
Reply to this topic Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.