diff options
author | Olivier Gayot <duskcoder@gmail.com> | 2014-11-07 17:56:09 +0000 |
---|---|---|
committer | Olivier Gayot <duskcoder@gmail.com> | 2014-11-07 17:56:09 +0000 |
commit | 251f92ddf6898c5d268b504883a3da0d49930c51 (patch) | |
tree | 312894392bbce519d5a5ba89122b0ecc2fd602ce /README.md |
kent_student_lookup
First release
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..48a65ac --- /dev/null +++ b/README.md @@ -0,0 +1,49 @@ +kent_student_lookup +=================== + +Using the ldap server provided by the University of Kent, this +software will dig and find the entry of a student associated to +the uid or last name given. + +* ldapsearch is needed for the software to run properly. It is +often provided in the package `openldap' + +usage: + + $ kent_student_lookup Gayot + +<stdout> + +# extended LDIF +# +# LDAPv3 +# base <ou=students,o=kent.ac.uk,o=uni> with scope subtree +# filter: (|(sn=Gayot)(uid=Gayot)) +# requesting: ALL +# + +# ojgg2, students, kent.ac.uk, uni +dn: uid=ojgg2,ou=students,o=kent.ac.uk,o=uni +mail: ojgg2@kent.ac.uk +objectClass: top +objectClass: person +objectClass: organizationalPerson +objectClass: dspswuser +objectClass: unikentuser +objectClass: inetorgperson +objectClass: inetUser +objectClass: posixaccount +objectClass: eduPerson +objectClass: account +objectClass: mailRecipient +givenName: O.J.G. +sn: Gayot +uid: ojgg2 +cn: O.J.G.Gayot +displayName: O.J.G.Gayot +unikentaccountType: pgtstudent +unikentdepartment: comp + +# search result +search: 2 +result: 0 Success |