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