From 5e887315cffee97cba366e304ce85458c5fea6aa Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 1 May 2003 13:58:48 +0000 Subject: Remove obsolete file (no longer necessary with docbook XML) (This used to be commit 3994ac4d22e666ae5ba38d2e6040fbf7b6e04617) --- 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