I successfully used the below batch, however Original.txt has spaces (in between each line there is 1 CRLF) and Reversed.txt removes all CRLF (Carriage Return/Line Feed).
Is there a way to keep the CRLFs in Reversed.txt?
@echo off
setlocal EnableDelayedExpansion
rem/> Reversed.txt
for /F "delims=" %%a in (Original.txt) do (
(
echo(%%a
type Reversed.txt
) > temp.txt
move /Y temp.txt Reversed.txt > NUL
)