OW 1.8 MS2WLINK is too picky about leading and trailing whitespace so

echoto is changed to not generate any.


git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@1386 6ac86273-5f31-0410-b378-82cca8765d1b
This commit is contained in:
Bart Oldeman 2009-05-19 20:31:22 +00:00
parent a238ea500f
commit dbd57dce42

View File

@ -1 +1,12 @@
@echo %2 %3 %4 %5 %6 %7 %8 %9 >> %1
@echo off
set FILE=%1
set STR=%2
:loop
shift
if "%2" == "" goto end
set STR=%STR% %2
goto loop
:end
echo %STR%>> %FILE%