diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 12:06:34 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 12:06:34 +0000 |
commit | 5e61585d76ae77fd5e9e96ebabb57afa4d74880d (patch) | |
tree | 2b467823aaeebc7ef8bc9e3cabe8074eaef1666d /mantools/hchangered | |
parent | Initial commit. (diff) | |
download | postfix-5e61585d76ae77fd5e9e96ebabb57afa4d74880d.tar.xz postfix-5e61585d76ae77fd5e9e96ebabb57afa4d74880d.zip |
Adding upstream version 3.5.24.upstream/3.5.24upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rwxr-xr-x | mantools/hchangered | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/mantools/hchangered b/mantools/hchangered new file mode 100755 index 0000000..044f2db --- /dev/null +++ b/mantools/hchangered @@ -0,0 +1,40 @@ +#!/bin/sh + +# Usage: hchangered oldfile newfile + +# hchangered - crude tool to red-color changes in HTML text. Text is +# also underlined so it shows on monochrome printers. + +# Bugs: does not red-color text inside tables. Fascist software may +# complain about tags being out of order. + +diff -e $1 $2 | (sed -n -e ' +/[ac]$/{ + p + a\ +<font color="red"><u> +: loop + n + /^\.$/b done1 + p + b loop +: done1 + a\ +</u></font>\ +. + b +} +/d$/{ + a\ + i\ +<font color="red"><u>[DELETED]</u></font>\ +. + p + b +} +'; echo '1,$p') | ed - $1 | perl -e ' +$buf = join("", <STDIN>); +$buf =~ s/pre>\s+<font/pre><font/g; +$buf =~ s/font>\s+<\/pre/font><\/pre/g; +print $buf; +' |