mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-02-05 13:40:08 +08: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}'
|
||
|
|