off topic: pipe to grep

2002-05-09 Thread dbrett
sort -n +2 list.txt | awk '{print $2}' | grep - list2.txt list.txtlist2.txt server1 10.1.1.1server1 10.1.1.1 server2 10.1.1.2server2 10.1.1.2 server3 10.1.1.3server3 10.1.1.3 ...

Re: off topic: pipe to grep

2002-05-09 Thread Keith Winston
On Thu, May 09, 2002 at 03:36:45PM -0400, dbrett wrote: sort -n +2 list.txt | awk '{print $2}' | grep - list2.txt list.txt list2.txt server1 10.1.1.1server1 10.1.1.1 server2 10.1.1.2server2 10.1.1.2 server3

Re: off topic: pipe to grep

2002-05-09 Thread dbrett
Hi Keith Thanks it worked like a charm. I should have been able to find this. I ended up in a mind set-up, I didn't seem to be able to get out of. I realize it is not the best way. It just sort of evolved. You should have seen what it orginal looked like. :) david On Thu, 9 May 2002,