I am having trouble with a batch file. In question: Batch: delete line feed from end of text file? Jeb was helping me out and provided the following batch file:
@echo off
setlocal DisableDelayedExpansion
set "firstLineReady="
(
for /F "eol=$ delims=" %%a in (myFile.txt) DO (
if defined firstLineReady (echo()
set "firstLineReady=1"
<nul set /p "=%%a"
)
) > out.txt
This file works fine. It copies each line of a source text myFile.txt file, adds line feeds to each line and deletes the last line feed before outputting to out.txt. It also considers the "at the beginning and end of my text file.
But the source file I actually need to append to >> out.txt has 1 line break at the end.
With Jeb's file that one line break gets deleted.
But how could I preserve that one line break (just not add another one)?
Thank you again for any help or hints! Best regards, Peter
type second.txt >> out.txt. If that doesn't work, show us smaple contents of your files please – jeb Jun 10 '11 at 7:41for %%a in (source.txt) do @(type %%a &echo.) >>final_output.txtand that adds one line break - just the way I wanted. I am obviously not very good with batch files - can you recommend a tutorial or book that explains "basics" up to "advanced"? Thanks again for your big help! Best regards, Peter – Peter Jun 10 '11 at 8:28