Memorize this stuff!!
git br | grep deeplinkreturns all the branches that havedeeplinkin the name.find . | grep languagefinds all the files with the stringlanguagein the name.find . -name "*.sql"finds all the files that end with.sqlin the name.find . "*user*" | xargs catfinds each file withuserin the title and then cats them all.find . -name "*.go" | xargs cat | wc -lfinds each file that ends with.goand counts the total lines of code.