When compiling programs in Solaris you may find you recieve the following error (or something along the same lines) complaining about grep.
The easiest way I found to get around this issue is to link grep to egrep. You can do think by using the following commands :
find / -name grep -exec rm {} \;
for i in `find / -name egrep` ; do echo ln -s $i `echo $i | sed ‘s/egrep/grep/g’` ; done
These commands will create a soft link (grep) to your egrep binary.
Latest posts by Rick Donato (see all)
- NETCONF & YANG: Automate Network Configs via Python - April 2, 2026
- Palo Alto – How to Configure Your Next-Generation Firewall - April 2, 2026
- How to Harden Linux SSH: Keys, Fail2ban & Ciphers - March 1, 2026
Want to become a UNIX expert ?
Here is our hand-picked selection of the best courses you can find online:
UNIX Administration Fundamentals
Vim Masterclass
and our recommended certification practice exams:
Delta Practice Tests