Skip to content

Instantly share code, notes, and snippets.

@balazs-endresz
Last active August 29, 2015 14:01
Show Gist options
  • Save balazs-endresz/ba2f9f8cb1d01424b2b1 to your computer and use it in GitHub Desktop.
Save balazs-endresz/ba2f9f8cb1d01424b2b1 to your computer and use it in GitHub Desktop.
Find duplicates in LDAP
# might need to set olcSizeLimit: 10000
ldapsearch -x -h localhost -b dc=domain,dc=org,dc=uk mail | grep '^mail:'|sort|uniq -c|sort -n|awk '$1 > 1 { print }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment