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