emailrelay/runperl.bat
Graeme Walker 2a4d620121 v2.5
2023-08-10 12:00:00 +00:00

51 lines
1.2 KiB
Batchfile

@echo off
@rem
@rem runperl.bat
@rem
@rem Runs "perl %1" and checks for an output file %2.
@rem
@rem The perl program is located using "ftype" or the PATH. Using ftype
@rem is more likely to find ActiveState perl rather than MSYS or Cygwin.
@rem For ActiveState the perl script sees a $^O value of "MSWin32".
@rem
@rem find perl using ftype
SET RUNPERL_PERL=
for /f "tokens=2 delims== " %%I in ('cmd /c "ftype perl 2>NUL:"') do set RUNPERL_PERL=%%~I
IF "%RUNPERL_PERL%"=="" goto no_ftype
IF NOT EXIST "%RUNPERL_PERL%" goto no_ftype
@rem run the ftype perl
IF EXIST %2 del /f %2
for /f "tokens=2 delims== " %%I in ('cmd /c "ftype perl 2>NUL:"') do %%I %1 %3 %4 %5
goto done
@rem find perl on the path
:no_ftype
where /q perl
if errorlevel 1 goto fail_no_perl
@rem run perl on the path
IF EXIST %2 del /f %2
cmd /c perl %1 %3 %4 %5
goto done
@rem after running perl check for the touchfile
:done
IF NOT EXIST "%2" goto fail_no_touchfile
echo done
goto end
@rem error if no perl
:fail_no_perl
echo error: failed to find perl: please install ActiveState perl
goto end
@rem error if no touchfile
:fail_no_touchfile
echo error: perl command failed: no output file created
goto end
:end
if "%RUNPERL_NOPAUSE%"=="" pause