On 04.06.2009, at 19:27, enas wrote:
FWIW, I’ve applied the patch at http://gist.github.com/123525 to my system, which takes care of the slowdowns for me. Of course you should backup the path_helper script beforehand, patching system scripts is generally not a good idea, use at your own risk and so on.
Interesting. I didn't know that one. But why do I receive an egrep not found each time I start a bash after having applied this patch?
I’d guess that your PATH isn’t set up correctly :-D egrep(1) should be in `/usr/bin', so you should replace the egrep call with `/usr/bin/egrep' (without the quotes).
(I thought /usr/bin was part of the default PATH bash defines on startup when it’s empty…)
Martin