blob: df502d5063e472369a151d50b4fca28e0fabe4cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
@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
rem Add bin dir to beginning of PATH only if it is not already there
for /f "tokens=1,2 delims=;" %%I in ("%~dp0..\..\bin\win32;%PATH%") do if not "%%~fI"=="%%~fJ" set "PATH=%%~fI;%PATH%"
rem Start new console
start "TeX Live 2011" "%COMSPEC%"
|