in reply to Compare usernames

Maybe by fetching all users and comparing their givenName properties?

Where do you have problems?

Replies are listed 'Best First'.
Re^2: Compare usernames
by PerlUserNL (Initiate) on Jan 13, 2011 at 12:11 UTC
    now the problem is: I'm a beginner in the scripting world. I always got problem with scripts, but if i see a script that looks like the script i have to made, i now what to do. Now I have to made a script that compare the user first name, output the users with the same name. And copy the usernames (of the users with the same name) tot the General field of the user with the same name. The problem is: I don't now how to start en how i can build up this script.

      See perlfaq4 for "duplicate". That shows the basic approach of removing duplicates from any kind of list.

      Adapting this algorithm to your specific needs is left as an exercise.