I tried grep -v '^$' in Linux and that didn't work. This file came from a Windows file system.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Try the following:
The UPDATE: This works for me for a file with blank lines or white spaces on windows:
|
|||||||||||
|
Or just simply awk
If you don't have dos2unix, then you can use tools like tr
|
||||
|
|
Tried hard but this seems to work (assuming
|
|||
|
|
Here in practice-
To understand more about how/why this works, I recommend reading up on regular expressions. http://www.regular-expressions.info/tutorial.html |
|||||||
|
|
grep pattern filename.txt | uniq |
|||||
|
|
I prefer using
|
|||
|