mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
9 lines
148 B
Bash
Executable File
9 lines
148 B
Bash
Executable File
#! /bin/sh
|
|
#
|
|
# Expunge "< " and "> " resulting from diff
|
|
#
|
|
awk '!/^[0-9]/ {print $0}' | \
|
|
sed "s/^< \|^> \|^- \|^+ //" | \
|
|
awk '/.+/ {print $0}'
|
|
|