Hello
With a bat file I call two functions (date and ping) sequentially
The output of the two function I pipeline to a file.
With the use of grep and some formating, my output file is like this
Code:
DATE 2009-03-28 21:04:33
64 bytes from 123.123.123.1: icmp_seq=1 ttl=58 time=3.55 ms
Now I like to avoid the Line feed after calling the date function.
The reason for this is that I want to put the output of my bat file at one single line in my output file
I hope this is possible