mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-21 15:19:34 -05:00
10 lines
151 B
Bash
10 lines
151 B
Bash
|
|
#! /bin/sh
|
||
|
|
#
|
||
|
|
# Expunge "< " and "> " resulting from diff
|
||
|
|
#
|
||
|
|
awk '!/^[0-9]/ {print $0}' | \
|
||
|
|
sed "s/^< //" | \
|
||
|
|
sed "s/> //" | \
|
||
|
|
awk '/.+/ {print $0}'
|
||
|
|
|