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