mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
6 lines
123 B
Bash
Executable File
6 lines
123 B
Bash
Executable File
#! /bin/sh
|
|
#
|
|
# Strip attribute from LDIF
|
|
#
|
|
awk '/^'$1'/ {getline; while (substr($0,1,1) == " ") getline;} /.*/ {print $0}'
|