how to append an empty line in text file using command line
echo hi >a.txt
echo >>a.txt
echo arun >>a.txt
here the out put comes as
hi
echo on
arun
so how could i append a empty line ..i want it to be like .
hi
arun
when i added this line on code @echo off it said echo off .how can it be done