#!/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;