RE: Running application

2001-10-22 Thread Stout, Joel R
Running application Watch the backslashes... Try: system("D:\\ultraedit\\uedit32.exe netlog.txt"); -Original Message- From: phumes1 [mailto:[EMAIL PROTECTED]] Sent: Monday, 22 October, 2001 08:02 To: [EMAIL PROTECTED] Subject: Re: Running application I have the following script w

Re: Running application

2001-10-22 Thread Nicolae Popovici
Hi, Could you try the following ? !#/usr/local/bin/perl { print ' ',"\n"; print '%Loading UltraEdit...',"\n"; chdir("D:\ultraedit\"); system("uedit32.exe netlog.txt"); exit 0; } it should work. Regards, Nicu phumes1 wrote

Re: Running application

2001-10-22 Thread phumes1
I have the following script which runs UltraEdit but I keep getting an error. I checked the path and it is correct. #!/usr/local/bin/perl # { print ' ',"\n"; print '%Loading UltraEdit...',"\n"; system("D:\ultraedit\uedit32.exe netlog.t