Perl I/O Read & Write

来源:互联网 发布:安装mysql步骤 编辑:程序博客网 时间:2024/04/30 14:58

#!/opt/nokianms/bin/perl -w

 

use strict;

use English;

 

use IO::File;

 

my $FileContent;

 

sub ReadRepXMLFile

{

    my ( $filename ) = @ARG;

 

    undef $RS; # for reading the file into one scalar

   

    my $ifh = IO::File->new( $filename,"r" );

    die "File OpenError($filename);$OS_ERROR" unless $ifh;

 

    $FileContent = <$ifh>;

 

    $ifh->close();

}

 

sub WriteRepXMLFile

{

    my ( $filename ) = @ARG;

 

    my $ofh = IO::File->new( $filename,"w" );

    die "File OpenError($filename);$OS_ERROR" unless $ofh;

    $ofh->print( $FileContent );

    $ofh->close();

}

 

sub main

{

    if ( scalar( @ARGV ) != 2 )

    {

        print "Usage: $0<xxxrap_rep.xml> <outputfile>\n";

        exit 1;

    }

 

    ReadRepXMLFile( $ARGV[0] );

    WriteRepXMLFile( $ARGV[1] );

 

     exit 0;

}

 

main();

 

__END__

原创粉丝点击