~ubuntu-branches/ubuntu/quantal/icu/quantal

« back to all changes in this revision

Viewing changes to source/tools/gentz/tz.bat

  • Committer: Package Import Robot
  • Author(s): Yves Arrouye
  • Date: 2002-03-03 15:31:13 UTC
  • Revision ID: package-import@ubuntu.com-20020303153113-3ssceqlq45xbmbnc
Tags: upstream-2.0-2.1pre20020303
ImportĀ upstreamĀ versionĀ 2.0-2.1pre20020303

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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