ivanzoid
1/12/2019 - 12:13 PM

Linux find.sh

# 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