How to “find” both regular files and directories

find

How can I tell ( if I can tell !) find to find files of both the directory and file type?

find -type fd

It is like the heuristic dark ages up in here.

Best Answer

Here is the command you can use:

find -type f -or -type d