Making some Debug with echo, date /t and time /t

  • Thread starter Thread starter KayZer Soze
  • Start date Start date
K

KayZer Soze

I have:
echo NOT_LISTENING >> c:\PORTMON.LOG & TIME /T >> c:\PORTMON.LOG & DATE /T
How can i make the resulting file (c:\PORTMON.LOG) only with ONE line.
Actually, the resulting file have 3 lines
 
KayZer said:
I have:
echo NOT_LISTENING >> c:\PORTMON.LOG & TIME /T >> c:\PORTMON.LOG & DATE /T
How can i make the resulting file (c:\PORTMON.LOG) only with ONE line.
Actually, the resulting file have 3 lines
IF your os is w2k or newer:

echo.NOT_LISTENING %time% %date%
 
Back
Top