I would like to find all the pdf files in a folder. It contains pdf files inside and more directories that contain more as well. The folder is loca
pdf
Try this:
find . -name "*.pdf" -type f -exec cp {} ./pdfsfolder \;