# A find Tutorial and Primer: https://danielmiessler.com/study/find/ find . -name '*.jpg' # find only directories find . -name 'foo' -type d # find only files find . -name 'foo' -type f