#!/usr/bin/perl ## small script to stirp the tags from ## manpages generated from docbook2man. we'll leave ## the and links for now while () { $_ =~ s/\s*\s*//g; print "$_"; } exit 0;