Re: perl script to modify LDAP.

2007-07-26 Thread Juan Pablo Feria Gomez
For multiple users, you need to 1. Open the file with the users names/password 2. Read that file 3. loop through the above command So I will let you tidy this up open (my $USERS,"<", "/file/of/users-password") or die ..; while (<$USERS>){ chomp; my ($user, $password) = split; #(I guess)

Re: perl script to modify LDAP.

2007-07-26 Thread rcook
>> Hi >> >> I am a beginner in perl and have tough time in writing a script which >> i need urgently. I would like to know the perl script to >> 1)modify passswords in LDAP for multiple users taking input from >> another file(which contains usernames and new passwords ) >> Thank you in advance. > >

Re: perl script to modify LDAP.

2007-07-26 Thread rcook
> Hi > > I am a beginner in perl and have tough time in writing a script which > i need urgently. I would like to know the perl script to > 1)modify passswords in LDAP for multiple users taking input from > another file(which contains usernames and new passwords ) > Thank you in advance. > -- Yo

perl script to modify LDAP.

2007-07-26 Thread Pradeep Mishra
Hi I am a beginner in perl and have tough time in writing a script which i need urgently. I would like to know the perl script to 1)modify passswords in LDAP for multiple users taking input from another file(which contains usernames and new passwords ) Thank you in advance. Regards Pradeep -