Remove obsolete file (no longer necessary with docbook XML)
authorJelmer Vernooij <jelmer@samba.org>
Thu, 1 May 2003 13:58:48 +0000 (13:58 +0000)
committerJelmer Vernooij <jelmer@samba.org>
Thu, 1 May 2003 13:58:48 +0000 (13:58 +0000)
(This used to be commit 3994ac4d22e666ae5ba38d2e6040fbf7b6e04617)

docs/docbook/scripts/strip-links.pl [deleted file]

diff --git a/docs/docbook/scripts/strip-links.pl b/docs/docbook/scripts/strip-links.pl
deleted file mode 100644 (file)
index 66bc101..0000000
+++ /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;