Red Hat Directory Server 8.0 Administrator's Guide

manager=*
The following filter searches for entries containing the common name Ray Kultgen. This is also
known as an equality search:
cn=Ray Kultgen
The following filter returns all entries that do not contain the common name Ray Kultgen:
(!(cn=Ray Kultgen))
The following filter returns all entries that contain a description attribute that contains the
substring X.500:
description=*X.500*
The following filter returns all entries whose organizational unit is Marketing and whose
description field does not contain the substring X.500:
(&(ou=Marketing)(!(description=*X.500*)))
The following filter returns all entries whose organizational unit is Marketing and that have Julie
Fulmer or Cindy Zwaska as a manager:
(&(ou=Marketing)(|(manager=cn=Julie Fulmer,ou=Marketing,dc=example,dc=com)
(manager=cn=Cindy Zwaska,ou=Marketing,dc=example,dc=com)))
The following filter returns all entries that do not represent a person:
(!(objectClass=person))
The following filter returns all entries that do not represent a person and whose common name
is similar to printer3b:
(&(!(objectClass=person))(cn~=printer3b))
4. Searching an Internationalized Directory
When performing search operations, the Directory Server can sort the results based on any
language for which the server has a supporting collation order. For a listing of the collation
orders supported by the directory, see Section 2, “Identifying Supported Locales”.
Searching an Internationalized Directory
563