blob: ef6be8b68ae957705dba7086c6de32d9ffac49e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
@echo off
rem This batchfile starts a command prompt with the TeX Live
rem Windows binary directory as first path component.
rem Public domain
@echo off
setlocal enableextensions
for %%I in ("%~dp0..\..\bin\win32") do set "PATH=%%~fI;%PATH%"
start "TeX Live 2011" "%COMSPEC%"
|