brintos

brintos / llvm-project-archived public Read only

0
0
Text · 207 B · b11c059 Raw
15 lines · plain
1#!/usr/bin/perl2 3use strict;4use Pod::LaTeX;5 6my ($in, $out) = @ARGV;7 8my $parser = new Pod::LaTeX(9		AddPreamble => 0,10		AddPostamble => 0,11		LevelNoNum => 5,12	     );13 14$parser->parse_from_file($in, $out);15