Can someone give some commonplace, simple examples of using "find".
.
.
find -name example.txt
find -name "*.pdf"
find -name "*pattern*"
find /path/to/search -name "*pattern*"
find -name *.pdf # Wrong find -name "*.pdf" # Right find -name \*.pdf # Right
Comment