summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/docbook/scripts/strip-links.pl16
1 files changed, 0 insertions, 16 deletions
diff --git a/docs/docbook/scripts/strip-links.pl b/docs/docbook/scripts/strip-links.pl
deleted file mode 100644
index 66bc101e08..0000000000
--- a/docs/docbook/scripts/strip-links.pl
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/perl
-
-## small script to strip the <URL:...> tags from
-## manpages generated from docbook2man. we'll leave
-## the <URL:ftp://...> and <URL:mailto:...> links for now
-
-while (<STDIN>) {
-
- chomp ($_);
- $_ =~ s/\s*<URL:.*html.*>\s+/ /g;
- $_ =~ s/\s*<URL:.*html.*>\S//g;
- $_ =~ s/\s*<URL:.*html.*>$//g;
- print "$_\n";
-
-}
-exit 0;