summaryrefslogtreecommitdiff
path: root/docs/docbook
diff options
context:
space:
mode:
authorAlexander Bokovoy <ab@samba.org>2003-04-30 21:27:38 +0000
committerAlexander Bokovoy <ab@samba.org>2003-04-30 21:27:38 +0000
commit049791de5b6e43e827e2be01a65958389d9c76e2 (patch)
tree99031c6737cebc09267bb3be142cfd1a77564315 /docs/docbook
parent3d6bb1823c3a82958ee2b80be4f953e23703eb9d (diff)
downloadsamba-049791de5b6e43e827e2be01a65958389d9c76e2.tar.gz
samba-049791de5b6e43e827e2be01a65958389d9c76e2.tar.bz2
samba-049791de5b6e43e827e2be01a65958389d9c76e2.zip
Remove strip-links.pl, not needed anymore
(This used to be commit 0cdab65ae336d8d1887519076a121deffe1ceb17)
Diffstat (limited to 'docs/docbook')
-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;