Warner Losh 46b993ff99 Implement a number of primaries present in GNU find, but not present
in our find.

The following are nops because they aren't relevant to our find:
	-ignore_readdir_race
	-noignore_readdir_race
	-noleaf
The following aliaes were created:
	-gid -> -group		[2]
	-uid -> -user		[2]
	-wholename -> -path
	-iwholename -> ipath
	-mount -> -xdev
	-d -> -depth		[1]
The following new primaries were created:
	-lname	like -name, but matches symbolic links only)
	-ilname like -lname but case insensitive
	-quit	exit(0)
	-samefile returns true for hard links to the specified file
	-true	Always true
I changed one primary to match GNU find since I think our use of it violates
POLA
	-false	Always false (was an alias for -not!)

Also, document the '+' modifier for -execdir, as well as all of the above.
This was previously implemented.

Document the remaining 7 primaries that are in GNU find, but aren't yet
implemented in find(1)

[1] This was done in GNU find for compatibility with FreeBSD, yet they
mixed up command line args and primary args.

[2] -uid/-gid in GNU find ONLY takes a numeric arg, but that arg does the
normal range thing that.  GNU find -user and -uid also take a numberic arg,
but don't do the range processing.  find(1) does both for -user and -group,
so making -uid and -gid aliases is compatible for all non-error cases used
in GNU find.  While not perfect emulation, this seems a reasonable thing
for us.
2008-02-23 16:29:04 +00:00
..
2008-02-23 14:34:52 +00:00
2006-12-28 04:58:38 +00:00
2007-09-11 01:59:00 +00:00
2007-03-09 14:36:18 +00:00
2007-03-28 07:48:03 +00:00
2007-03-10 07:10:01 +00:00
2007-03-10 07:11:20 +00:00
2005-01-25 22:32:48 +00:00
2006-09-25 15:06:24 +00:00
2005-02-13 22:25:33 +00:00
2005-01-25 22:32:48 +00:00
2005-11-18 10:36:29 +00:00
2005-01-25 22:32:48 +00:00
2006-12-24 19:55:38 +00:00
2006-12-18 15:36:31 +00:00
2008-01-24 07:25:13 +00:00
2006-07-27 14:20:14 +00:00
2005-02-13 22:25:33 +00:00
2006-08-23 12:12:56 +00:00
2005-02-09 18:07:17 +00:00
2006-12-24 14:23:35 +00:00
2006-09-13 05:06:12 +00:00
2007-11-09 16:31:47 +00:00
2005-02-13 22:25:33 +00:00
2007-05-12 12:23:40 +00:00
2006-08-20 15:52:17 +00:00
2005-02-13 22:25:33 +00:00
2008-02-05 17:34:44 +00:00
2007-11-30 11:02:36 +00:00
2006-12-26 10:37:37 +00:00
2006-07-18 10:19:46 +00:00
2005-01-18 13:43:56 +00:00
2006-12-15 14:14:17 +00:00
2007-03-04 08:24:13 +00:00
2006-09-29 15:20:48 +00:00
2005-02-07 08:44:34 +00:00
2008-02-19 07:09:19 +00:00
2007-03-25 18:37:59 +00:00
2007-11-07 07:59:38 +00:00
2006-12-26 12:43:12 +00:00
2006-07-30 07:41:28 +00:00
2005-11-13 21:03:56 +00:00
2008-02-09 09:12:02 +00:00
2005-01-18 13:43:56 +00:00
2006-09-29 15:20:48 +00:00
2008-01-16 19:27:43 +00:00
2005-03-11 14:17:12 +00:00
2007-11-07 07:56:57 +00:00
2006-10-12 21:10:55 +00:00
2007-01-20 08:24:02 +00:00
2007-02-27 12:06:02 +00:00
2005-01-18 13:43:56 +00:00
2005-02-13 22:25:33 +00:00
2006-08-29 18:11:20 +00:00
2006-12-23 19:15:39 +00:00
2006-12-14 19:02:48 +00:00
2008-01-15 07:40:30 +00:00
2006-12-14 00:02:44 +00:00
2005-04-09 14:31:41 +00:00
2006-12-13 12:09:41 +00:00
2005-08-25 14:09:35 +00:00
2006-12-29 13:08:46 +00:00
2007-11-02 12:07:07 +00:00
2005-01-18 13:43:56 +00:00
2006-12-28 10:58:06 +00:00