mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-21 15:19:34 -05:00
6 lines
131 B
Bash
Executable file
6 lines
131 B
Bash
Executable file
#! /bin/sh
|
|
#
|
|
# Strip entries that belong to subtree $1
|
|
#
|
|
awk "/^dn:/&&!/$1\$/ {while (\$1!=\"\") {print \$0;getline} print \"\"}"
|
|
|