[dywang@dywmac zzz]$ vim b.txt [dywang@dywmac zzz]$ cat b.txt boot 345 bot root 390 boooot aoot sort 390 boooot coot booooooot roooooooot 390 xyzbt root 134not390 boooot
[dywang@dywmac zzz]$ grep --color 'o\{3,5\}' b.txt root 390 boooot aoot sort 390 boooot coot booooooot roooooooot 390 xyzbt root 134not390 boooot [dywang@dywmac zzz]$ egrep --color 'o{3,5}' b.txt root 390 boooot aoot sort 390 boooot coot booooooot roooooooot 390 xyzbt root 134not390 boooot
[dywang@dywmac zzz]$ grep --color 'boo*t' b.txt boot 345 bot root 390 boooot aoot sort 390 boooot coot booooooot root 134not390 boooot [dywang@dywmac zzz]$ egrep --color 'bo+t' b.txt boot 345 bot root 390 boooot aoot sort 390 boooot coot booooooot root 134not390 boooot
[dywang@dywmac zzz]$ grep --color 'bo\{0,1\}t' b.txt 345 bot roooooooot 390 xyzbt [dywang@dywmac zzz]$ egrep --color 'bo?t' b.txt 345 bot roooooooot 390 xyzbt