[gentoo-user] bash script question, strange grep

2005-04-18 Thread Botykai Zsolt
Hi 4 everyone, I have a little problem: i have a file list in /tmp/iadmos (contains 28 file name which are in the current directory, i made this list with: egrep -il 'trt_attr.*[,]iadm' t*.dcl /tmp/iadmos then I want to cut out the files which don't contain the string 'NOIADM'. So I did:

Re: [gentoo-user] bash script question, strange grep

2005-04-18 Thread Edward Catmur
then I want to cut out the files which don't contain the string 'NOIADM'. So I did: for i in `cat /tmp/iadmos` ; do egrep -lv 'NOIADM' $i ; done which gave me all 28 file name. I wondered about it, so I tried: for i in `cat /tmp/iadmos` ; do egrep -l 'NOIADM' $i ; done which gave