cscript - print output on same line on console?
- by Guy
If I have a cscript that outputs lines tothe screen, how do I avoid the "line feed" after each print?
Example:
for a = 1 to 10
print "."
REM (do something)
next
The expected output should be:
..........
Not:
.
.
.
.
.
.
.
.
.
.
In the past I've used to print the "up arrow character" ASCII code. Can this be done in cscript?