egrep 和 grep 的主要区别在于对正则表达式的支持。
-rwxr-xr-x 1 root root 28 Jan 29 2020 /bin/egrep
-rwxr-xr-x 1 root root 199136 Jan 29 2020 /bin/grep
1e6ebb9dd094f774478f72727bdba0f5 /bin/grep
ef55d1537377114cc24cdc398fbdd930 /bin/egrep
区别
grep 默认使用基本正则表达式,而 egrep 默认使用扩展正则表达式。
grep 通常更快,因为它处理的是更简单的正则表达式。
grep 通过 -E 选项来获取与 egrep 相同的功能,且某些系统可能不支持 egrep 。