source: trunk/minix/commands/bzip2-1.0.3/format.pl@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 1.1 KB
Line 
1#!/usr/bin/perl -w
2use strict;
3
4# get command line values:
5if ( $#ARGV !=1 ) {
6 die "Usage: $0 xml_infile xml_outfile\n";
7}
8
9my $infile = shift;
10# check infile exists
11die "Can't find file \"$infile\""
12 unless -f $infile;
13# check we can read infile
14if (! -r $infile) {
15 die "Can't read input $infile\n";
16}
17# check we can open infile
18open( INFILE,"<$infile" ) or
19 die "Can't input $infile $!";
20
21#my $outfile = 'fmt-manual.xml';
22my $outfile = shift;
23#print "Infile: $infile, Outfile: $outfile\n";
24# check we can write to outfile
25open( OUTFILE,">$outfile" ) or
26 die "Can't output $outfile $! for writing";
27
28my ($prev, $curr, $str);
29$prev = ''; $curr = '';
30while ( <INFILE> ) {
31
32 print OUTFILE $prev;
33 $prev = $curr;
34 $curr = $_;
35 $str = '';
36
37 if ( $prev =~ /<programlisting>$|<screen>$/ ) {
38 chomp $prev;
39 $curr = join( '', $prev, "<![CDATA[", $curr );
40 $prev = '';
41 next;
42 }
43 elsif ( $curr =~ /<\/programlisting>|<\/screen>/ ) {
44 chomp $prev;
45 $curr = join( '', $prev, "]]>", $curr );
46 $prev = '';
47 next;
48 }
49}
50print OUTFILE $curr;
51close INFILE;
52close OUTFILE;
53exit;
Note: See TracBrowser for help on using the repository browser.