I have a following data ..
Now I want to add hyphen (-) in between attributes... It should be below.dn: cn=some,ou=orgperson,o=org
changetype: modify
add: attribute
attribute: somevalue
attribute: someother
attribute: somethinglese
dn: cn=some,ou=orgperson,o=org
changetype: modify
add: attribute
attribute: somevalue
attribute: someother
How can we achieve this with regular expressions.dn: cn=some,ou=orgperson,o=org
changetype: modify
add: attribute
attribute: somevalue
-
attribute: someother
-
attribute: somethinglese
dn: cn=some,ou=orgperson,o=org
changetype: modify
add: attribute
attribute: somevalue
-
attribute: someother
Thanks a bunch