in reply to Re: Not Matching String is Matching
in thread Not Matching String is Matching

Not very efficient. grep will always loop through all the items every time, even after the wanted element is found.

It's better using a loop from where you exit when the item is found.

  • Comment on Re: Re: Not Matching String is Matching