TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Getting a Grip on GNU grep

10 点作者 obsaysditto将近 15 年前

2 条评论

bnoordhuis将近 15 年前
From TFA:<p><pre><code> grep '[[:punct:]]$' files </code></pre> I suspect the author has grep aliased to `egrep` or `grep -E` because [:punct:] is an extended regular expression and GNU grep defaults to basic RE mode.
davnola将近 15 年前
Before you invest time in grep, take a look at ack-grep <a href="http://betterthangrep.com/" rel="nofollow">http://betterthangrep.com/</a>.<p><pre><code> ack-grep --thppt</code></pre>