FreeDOS/utils/echoto.bat
Bart Oldeman dbd57dce42 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
2009-05-19 20:31:22 +00:00

13 lines
122 B
Batchfile
Executable File

@echo off
set FILE=%1
set STR=%2
:loop
shift
if "%2" == "" goto end
set STR=%STR% %2
goto loop
:end
echo %STR%>> %FILE%