Computing Staff
  • 1

Calling A Perl Script In Batch File

  • 1

Hi Friends,
I just want to write one batch file where in it calls for a particular perl script to run located in one location and display the output in notepad.

Please help me on this one

Share

1 Answer

  1. Don’t know too much Perl, but this may do:
    @echo off

    call “C:\program files\perl\bin\perl.exe” “C:\myperlscripts\script00176.pl” > C:\perl_out.log 2>&1

    • 0