#!/usr/bin/perl # # Script to convert vym files to arbitrary formats # Using xml stylesheets # # written by Uwe Drechsel # my $version="0.1"; my $PARSER="xsltproc"; my $OUTDIR=""; my $INPUTDIR=""; my $XSL="vym2html.xsl"; use Getopt::Long; GetOptions ( "o=s" => \$opt_outdir, "x=s"=> \$opt_xst, "h!" => \$opt_usage ) || usage (); if ($opt_usage) { $0 =~ s#.*/##g; print <