curiosity about echo command in prompt
Posted: 14 Feb 2014 05:26
Hello.
I'm curious about why happens this in Windows 8 in cmd in interactive mode:
this script:
after the h there are a 0d 0a character, it prints:
but adding other 0d 0a character:
it prints:
I'm curious about why happens this in Windows 8 in cmd in interactive mode:
this script:
Code: Select all
@echo off
echo h
after the h there are a 0d 0a character, it prints:
Code: Select all
C:\dev>test.cmd
h
C:\dev>
but adding other 0d 0a character:
Code: Select all
@echo off
echo h
it prints:
Code: Select all
C:\dev>test.cmd
h
C:\dev>