View on GitHub

notes

A collection of my TIL notes and commonplace book entries.

find command cheatsheet

To find all files in the src folder that have the text myFunction:

find src -type f -exec grep 'myFunction' {} -l \;  

Note: -l is a grep option to print only name of files containing matching lines.

Resources