Live data from Hacker News

Text Wizardry: 10 Commands

gurge.com

1–2 of 2 posts

Re: Text Wizardry: 10 Commands

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

Combine with grep to find c++ files.

$ find | grep cpp

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"