Skip to content

Text Wizardry: 10 Commands

gurge.com
4 pointsVic-nyc1 comment
On HN

Comments

A good overview, but some bad examples. For 'find', he says:

<I>Combine with grep to find c++ files.

$ find | grep cpp</I>

That has at least two problems: 1. It will match 'cpp' anywhere in the name, such as 'tcpping.py', resulting in false positives. 2. It's inefficient, as there's no need to invoke grep at all. Much better just to use:

$ find . -name "*.cpp"

AboutSource Built by g1lg1l

Hackerly is an independent reader for Hacker News, built on the public HN API. Not affiliated with Y Combinator.