On Friday 16 December 2005 14:17, Jean-Michel Schelcher wrote:
JS > > > n'importe quoi repeté 99 fois avant le motif abc
JS > > > grep -e '.+{99}abc' *.txt
JS >
JS > mmmh, pas plutôt celà ?
JS >
JS > grep -e "^.{99}abc" *.txt
-E au lieu de -e a priori... non?
grep -E "^.{99}abc" *.txt
A+, JD.

