diff options
Diffstat (limited to 'Master/tlpkg/doc')
-rwxr-xr-x[l---------] | Master/tlpkg/doc/w32unclient.bat | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/Master/tlpkg/doc/w32unclient.bat b/Master/tlpkg/doc/w32unclient.bat index 1c08f6b7c16..63afc5aa42b 120000..100755 --- a/Master/tlpkg/doc/w32unclient.bat +++ b/Master/tlpkg/doc/w32unclient.bat @@ -1 +1,19 @@ -w32client.bat
\ No newline at end of file +@echo off
+rem Wrapper batchfile for Perl script of the same name
+rem both in the root of the TeX Live installation.
+rem Based on code from Tomasz M. Trzeciak.
+rem Public domain.
+
+rem For more safeguards and 4DOS/4NT compatibility,
+rem see w32client_advanced.bat
+
+set this=%~dp0
+
+rem Use TL Perl
+path %this%tlpkg\tlperl\bin;%this%bin\win32;%path%
+set PERL5LIB=%this%tlpkg\tlperl\lib;%this%tlpkg;%this%texmf\scripts\texlive
+
+rem Start Perl script of the same name
+perl "%~dpn0" %*
+rem Give user opportunity to scan output messages
+pause
|