Hello Monks,
I need to execute a command line utility from Perl and get the windows return code for that particular execution
Tried the following code
System ("del temp.txt");
System ("echo %errorlevel");
But It always returns a Code 0 even if the file is not present (if should have returned 1)
Can any help me in running more than 1 command using a single System command or is there ny way I can get this working....
Thanks in advance