Usage: findfile [OPTION...] [--] [pattern]
Presently this is just a shorthand for:

find . -follow -type f -name '*pattern*' -print 2>/dev/null |sort
Options:

  -C, --cd=directory         search from this directory rather than cwd.
  -d, --dir                  search for a directory rather than a file. Default
                             is 'f'.
  -v, --verbose              be verbose
  -x, --exclude=directory    exclude directory.
  -h, --help                 print this help message
  -V, --version              print version and exit

Mandatory or optional arguments to long options are also mandatory or optional
for any corresponding short options.