使 LDAP 搜索不显示 DN
Make LDAP search don't show DN
我如何制作用于 LDAP 搜索的 bourne shell 代码而不是 return DN 和 return 只有 CN?为此,我正在使用 iTerm2。
如果您只想查看 cn
结果,那么您可以使用如下内容:
ldapsearch -o ldif-wrap=no -L <blah> cn | grep '^cn:'
where <blah>
is your bind/search conditions
它 returns dn
的原因是因为如果没有它,返回的数据将无法正确形成 ldif。
By using -o ldif-wrap=no
you don't have to cope with issues involving line-wrapping of the returned data.
我如何制作用于 LDAP 搜索的 bourne shell 代码而不是 return DN 和 return 只有 CN?为此,我正在使用 iTerm2。
如果您只想查看 cn
结果,那么您可以使用如下内容:
ldapsearch -o ldif-wrap=no -L <blah> cn | grep '^cn:'
where
<blah>
is your bind/search conditions
它 returns dn
的原因是因为如果没有它,返回的数据将无法正确形成 ldif。
By using
-o ldif-wrap=no
you don't have to cope with issues involving line-wrapping of the returned data.