mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-23 08:09:34 -05:00
10 lines
180 B
Bash
Executable file
10 lines
180 B
Bash
Executable file
#! /bin/sh
|
|
#
|
|
# Strip entries that belong to subtree $2 (if any)
|
|
#
|
|
if test $# == 0 ; then
|
|
exit 1
|
|
else
|
|
awk "/^dn:/&&!/$1\$/ {while (\$1!=\"\") {print \$0;getline} print \"\"}"
|
|
fi
|
|
|