]>
Commit | Line | Data |
---|---|---|
b75a7d8f A |
1 | @echo off |
2 | REM Copyright (C) 1999, International Business Machines | |
3 | REM Corporation and others. All Rights Reserved. | |
4 | ||
5 | REM This script is a Windows launcher for the tz.pl script. For this | |
6 | REM to work, the perl executable must be on the path. We recommend | |
7 | REM the ActiveState build; see http://www.activestate.com. See the | |
8 | REM tz.pl script itself for more documentation. | |
9 | ||
10 | if "%OS%" == "Windows_NT" goto WinNT | |
11 | perl -w -x -S "tz.pl" %1 %2 %3 %4 %5 %6 %7 %8 %9 | |
12 | goto end | |
13 | :WinNT | |
14 | perl -w -x -S "tz.pl" %* | |
15 | if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto end | |
16 | if %errorlevel% == 9009 echo You do not have Perl in your PATH. | |
17 | :end |