I've been using the egrep command a lot lately (just out of preference over grep) and I have noticed a behaviour that I don't fully understand.
When I run the following command in my home directory:
egrep -r "main" *
it does what I expect and returns all of the lines and respective files that contain "main".
Although if I enter:
egrep -r "main"
and forget to put the star at the end, it seems to just hang forever.
I'm hoping someone might be able to shed some light as to why this is and what it is doing?
Thanks :)

