How one can redirect the whole do loop process in once in batch scrip, not in a line with command separator character and does not use iterated redirection i.e. using '>>' within loop body.
do i=1 to 9
echo Page %i
enddo
... then how to redirect it to text file e.g ' >a ' once for all output above ??
do i=1 to 9
echo Page %i
enddo
... then how to redirect it to text file e.g ' >a ' once for all output above ??