Since egrep is essentially grep -E I would expect it to be an alias that calls grep with that option. However on my system
file `which egrep`
shows it is an executable. Also egrep as an alias only invokes egrep with the color option. Why is it not an alias? Do they compile a separate binary for egrep?
Just curious...