Search found 1 match

by knightEknight
16 Mar 2011 10:36
Forum: DOS Batch Forum
Topic: Redirect Twice
Replies: 5
Views: 7512

Re: Redirect Twice

REM - another option is to write your own :echo

@echo off

call :echo test text
exit/b

:echo
echo %*
echo %* >> outfile.txt
exit/b

:end