软件包: grep (2.5.3~dfsg-3) [必备]
grep 的相关链接
Ubuntu 的资源:
下载源码包 grep:
维护者:
Please consider filing a bug or asking a question via Launchpad before contacting the maintainer directly.
Original Maintainers (usually from Debian):
- Anibal Monsalve Salazar
- Santiago Ruano Rincón
It should generally not be necessary for users to contact the original maintainer.
相似软件包:
GNU grep、egrep 和 fgrep
“grep”是用于在文件中搜索文字的工具,它可能在命令行或脚本中使用。就算您不 打算使用它,系统上的其它软件包也可能会用到。
GNU 家族的 grep 工具大概是速度最快的 grep,基于 fast lazy-state deterministic matcher (速度大约是老 Unix grep 的两倍) 和 Boyer-Moore-Gosper 技术,在通过正 则表达式搜索一个固定字串时,可以事先淘汰掉不可能匹配上的文字而无须逐字检查。 结果通常会比 Unix grep 或 egrep 要快许多倍。然而,当正则表达式包含追溯前段内 容 (即 backreferencing) 时会慢很多。