vote up -1 vote down star

Please close this question instead!


I have a list of objects output from ldapsearch as follows:

dn: cn=HPOTTER,ou=STUDENTS,ou=HOGWARTS,o=SCHOOL
dn: cn=HGRANGER,ou=STUDENTS,ou=HOGWARTS,o=SCHOOL
dn: cn=RWEASLEY,ou=STUDENTS,ou=HOGWARTS,o=SCHOOL
dn: cn=DMALFOY,ou=STUDENTS,ou=HOGWARTS,o=SCHOOL
dn: cn=SSNAPE,ou=FACULTY,ou=HOGWARTS,o=SCHOOL
dn: cn=ADUMBLED,ou=FACULTY,ou=HOGWARTS,o=SCHOOL

I need to pipe this output through something that returns results like this:

HPOTTER
HGRANGER
RWEASLEY
DMALFOY
SSNAPE
ADUMBLED

Can I use sed to do this, or one of the other GNU textutils?

flag

Dup of stackoverflow.com/questions/480717/… – Paul Tomblin Jan 26 '09 at 18:26
Well, not exactly duplicate, but close enough. – Tomalak Jan 26 '09 at 18:39
In this case, the original question was less clear, so maybe the original should have been closed as duplicate? – Eddie Jan 26 '09 at 18:44
@Eddie, the asker had accepted an answer to the original already. – Paul Tomblin Jan 26 '09 at 18:47

closed as exact duplicate by Paul Tomblin, dF, Cody Brocious, Tomalak Jan 26 '09 at 18:39

2 Answers

vote up 4 vote down check

cut -d '=' -f2 yourfile | cut -d ',' -f1

link|flag
vote up 2 vote down

If you want to use sed, you can use something like the following:

sed -e 's/dn: cn=\([^,]*\),.*$/\1/'

You have to use [^,]* because in sed, .* is "greedy" meaning it will match everything it can before looking at any following character. That means if you use \(.*\), in your pattern it will match up to the last comma, not up to the first comma.

Edit: Add more detail and description

link|flag
You have to be careful. According to the RFC unescaped commas are allowed in the text of each piece of the DN. You can shortcut if you know you won't have commas from your own data. – Joe Jan 26 '09 at 19:10

Not the answer you're looking for? Browse other questions tagged or ask your own question.