Reading through an execution plan to understand window functions can be a little tricky, so stick to the basics.| Grant Fritchey
A simple grep can help you recursively search for a substring in all the files of a directory. Here is an example of looking for multi-doc yaml files: # recursively search directory, looking for line '---' # regex: caret means line starts with, dollar sign mean line ends with grep -sr '^---$' If you have ... Bash: counting number of times substring is found in directory| fabianlee.org
02 August 2017| dirtyhandscoding.github.io