How do I append an empty line in a text file using the command line?
echo hi >a.txt
echo >>a.txt
echo arun >>a.txt
Here the output comes as:
hi
echo on
arun
So how could I append an empty line? I want it to be like this:
hi
arun
When I added this line on code @echo off
, it said echo off
. How can it be done?