Find files under the given directory tree, recursively.
find {{root_path}} -name '{{*.ext}}'
find {{root_path}} -path '{{**/lib/**/*.ext}}'
find {{root_path}} -name '{{*.ext}}' -exec {{wc -l {} }}\;
find {{root_path}} -mtime {{-1}}
find {{root_path}} -size +500k -size -10MB -iname '{{*.TaR.gZ}}'
find {{root_path}} -name '{{*.ext}}' -mtime {{+180}} -delete
find {{root_path}} -name '{{*.py}}' -or -name '{{*.r}}'
find {{root_path}} -name '{{*.py}}' -not -path '{{*/site-packages/*}}'