Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

tee

  1. D

    Why is the TEE command 120 times slower?

    I have written this code: @ECHO OFF TIMER /1 ON DO i in /S *.* ECHO %i ECHO %_date %_time %i >> %tmp\logbook1.txt ENDDO TIMER /1 OFF It executes in 1 minute and 17 seconds. Because ECHO is used twice, I have written this code: @ECHO OFF TIMER /1 ON DO i in /S *.* ECHO %i | TEE /a...
Back
Top