Here's another one:
Main Topics
Browse All TopicsHi guys,
I have a text file called computers.txt
Let's say it contains the following:
--------------------------
serverA
serverB
serverC
serverD
Now, if I open up this file, and find out where the cursor is if I go to the end of the file,
I find that the cursor sits one line down from the last entry in the list, that is, below the line serverD in the above example.
What I want to know is, how can I remove this last row below serverD through scripting, if I dont know what the last row is, because that list can change, but it always seems to end with a carriage return below the last line?
It does not contain any spaces, but it is the last row.
Thanks guys.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: billprewPosted on 2009-11-07 at 15:38:40ID: 25768640
If you want to do it in VBScript this should give you the idea.
eyscriptin gguy/archi ve/2006/01 /03/ how-ca n-i-remove -all-the-b lank-lines -from-a-te xt-file.as px
http://blogs.technet.com/h
Or you could just do it right at the batch command prompt with this:
For /F "tokens=* delims=" %%A in (computers.txt) Do Echo %%A >> output.txt
If you want help putting that into a BAT file or scripting more logic into it let me know.
~bp