dbd57dce42
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
13 lines
122 B
Batchfile
Executable File
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%
|