Deleting blank lines in a text file with Batch Commands?
-
I have a batch file that creates a text file that has multiple uses, however one of the biggest problems with this system is, it will create a blank row at the end of the text file. I have researched and not been able to find a way to delete that blank row. The code that creates my txt file is below Echo %ParamA% >> "%Drive%%Dirpath%\%Param%-1\Shop.txt" Echo %ParamB-1% >> "%Drive%%Dirpath%\%Param%-1\Shop.txt" Echo %Param%-1 >> "%Drive%%Dirpath%\%Param%-1\Shop.txt" That creates a text file (Depending on user input) like this: 12929-1 Thompson Double key <Blank Row> How can I delete the blank row that follows the text that I need shown?
-
Answer:
You can try modifying this which I found. I know nothing about it myself so don't ask. ::== choplast.bat @echo off > newfile setlocal find /v /c "#$@$#@" < myfile > %temp%\# set /p total=<%temp%\# set /a num2keep=%total%-1 set lineNUM=0 for /f "tokens=*" %%L in (myfile) do ( call :sub1 %%L) goto :eof :sub1 set /a lineNUM+=1 if %lineNUM% gtr %num2keep% goto :eof echo %* >> newfile goto :eof :: DONE --- Here is something else I found. ex - filename < $d w q DONE ℬ ℋ
Michael at Yahoo! Answers Visit the source
Other answers
echo.|set /p =%ParamA%>> "%Drive%%Dirpath%\%Param%-1\Shop.txt" This will do what you're asking, but then you have the problem that the next line you echo into the file will appear on the same line. You'll probably need this command after it: echo.>> "%Drive%%Dirpath%\%Param%-1\Shop.txt" so your final batch file will look like this: echo.|set /p =%ParamA%>> "%Drive%%Dirpath%\%Param%-1\Shop.txt" echo.>> "%Drive%%Dirpath%\%Param%-1\Shop.txt" echo.|set /p =%ParamB-1%>> "%Drive%%Dirpath%\%Param%-1\Shop.txt" echo.>> "%Drive%%Dirpath%\%Param%-1\Shop.txt" echo.|set /p =%Param%-1>> "%Drive%%Dirpath%\%Param%-1\Shop.txt"
Jake
Related Q & A:
- How to use hadoop for text file?Best solution by Stack Overflow
- How to extract information from text file in Python?Best solution by Stack Overflow
- How to count the number of lines in a file using Bash?Best solution by Stack Overflow
- Is there a limit on the size of a new file or a text file?Best solution by Stack Overflow
- How to search for a particular string in a text file using java?Best solution by Stack Overflow
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.