If ignore_perishable is set, increment a count of all excluded
[rsync/rsync.git] / tweak_manpage
CommitLineData
5e61bdb4
WD
1#!/usr/bin/perl -i -p
2s{(--\w[-\w]+)}{ $x = $1; $x =~ s/-/\\-/g; $x }eg;
3s/(?<!\\)-(['"\d*])/\\-$1/g;
b6855ddc 4s#(['"(= /,])-(?!-)#$1\\-#g;
5e61bdb4
WD
5s/(\\fB)-/$1\\-/g;
6s/(\[\w)-(\w\])/$1\\-$2/g;
7s{(\\f\(CW.*?\\fP)}{ $x = $1; $x =~ s/(?<!\\)-/\\-/g; $x }eg;
8s/(\.\w+)-/$1\\-/g;