Remove a line contains a unique string
How to remove a line contains a unique string?
I have a text contains 3 lines, e.g:
hello world
hello you
hello world
So I want to remove a line contains "you". And the file become like this:
hello world
hello world
How can I?
Anyone can help me please?