When appending to a file using Windows batch commands, how to append immediately after the next word in the file?
For example, these commands
echo here is the date of > c:\arun.txt
date /t >> c:\arun.txt
write the following text to the arun.txt file:
here is the date of
29-03-2010
But I want the output to be like this:
here is the date of 29-03-2010
How to avoid carrage return while appending?