mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-22 07:39:35 -05:00
6 lines
255 B
Bash
Executable file
6 lines
255 B
Bash
Executable file
#! /bin/sh
|
|
#
|
|
# Expunge extra stuff resulting from diff -u
|
|
# strip everything, including leading '-', except leading '+' to force errors
|
|
#
|
|
awk '/^-/ {if (substr($0,1,3) != "---") print substr($0,2,length($0))} /^+/ {if (substr($0,1,3) != "+++") print $0}'
|