From 049791de5b6e43e827e2be01a65958389d9c76e2 Mon Sep 17 00:00:00 2001 From: Alexander Bokovoy Date: Wed, 30 Apr 2003 21:27:38 +0000 Subject: Remove strip-links.pl, not needed anymore (This used to be commit 0cdab65ae336d8d1887519076a121deffe1ceb17) --- docs/docbook/scripts/strip-links.pl | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 docs/docbook/scripts/strip-links.pl (limited to 'docs/docbook') 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 tags from -## manpages generated from docbook2man. we'll leave -## the and links for now - -while () { - - chomp ($_); - $_ =~ s/\s*\s+/ /g; - $_ =~ s/\s*\S//g; - $_ =~ s/\s*$//g; - print "$_\n"; - -} -exit 0; -- cgit