Use SED to get rid of those nasty empty lines in a text file:
sed '/^$/ d' someFile > someNewFile
mv someNewFile someFile
July 3, 2009
I Heart Unix
No Comments Yet »
No comments yet.
Use SED to get rid of those nasty empty lines in a text file:
sed '/^$/ d' someFile > someNewFile
mv someNewFile someFile
No comments yet.