home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1998 October
/
PCWorld_1998-10_cd.bin
/
software
/
prehled
/
komix
/
DATA.Z
/
m4env.bat
< prev
next >
Wrap
DOS Batch File
|
1997-11-10
|
276b
|
13 lines
@echo off
if NOT "%M4_home%" == "" goto start
echo %0: M4_home not set
goto end
:start
if "%1"=="" goto noargs
"%M4_home%\bin\otprint" "%M4_home%\tcl\m4env.tcl" -- %1 %2 %3 %4 %5 %6 %7 %8 %9
goto end
:noargs
"%M4_home%\bin\otprint" "%M4_home%\tcl\m4env.tcl"
:end