littleIdiot
MIS
Hi,
Simply really ... I have a pipe delimited text file and want to grep everything except the following text:
I have searched the FAQ's and this forum, but not really getting anywhere.
I think egrep and an input file listing my text will work, so I have a file as above called strings.txt but the following fails:
any ideas?
Simply really ... I have a pipe delimited text file and want to grep everything except the following text:
Code:
| N1
| N2
| N3
| N4
| N5
| N6
| N7
| N8
| N9
I have searched the FAQ's and this forum, but not really getting anywhere.
I think egrep and an input file listing my text will work, so I have a file as above called strings.txt but the following fails:
Code:
egrep -e strings.txt pipe_delim.txt
any ideas?