Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can Perl Execute a .exe in a Perl Script?

Status
Not open for further replies.

moof15

Programmer
Aug 22, 2002
23
0
0
US
Was just wondering if there is a perl script that could execute a .exe file from a perl script? e.g:

imp system/manager@ls2db001 log=liqimp.log ignore=Y file=liqexp.dmp fromuser=LS2USER touser=LS2USER grants= N

This would be the .exe how would I put it into a perl script? It is a import data into a oracle database.
 
How about:

system("imp system/manager@ls2db001 log=liqimp.log ignore=Y file=liqexp.dmp fromuser=LS2USER touser=LS2USER grants= N");

Would that do?
 
Looks good, will try that today, Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top