Very cool. I'm always using grep to search recursively: grep -r 'something' somedirectory so thanks for the reminder you can use it on a single file.
I also like to use it to filter results of find:
ls -l | grep '2017'
Would be files from this year in the current directory.
Following you.
RE: Hack like a pro: shell `pipe`