Archive::Cpio

Module for manipulations of cpio archives
Download

Archive::Cpio Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Publisher Name:
  • Pascal Rigaux
  • Publisher web site:
  • http://www.chez.com/prigaux/

Archive::Cpio Tags


Archive::Cpio Description

Module for manipulations of cpio archives Archive::Cpio is a Perl module that provides a few functions to read and write cpio files.SYNOPSIS use Archive::Cpio; # simple example removing entry "foo" my $cpio = Archive::Cpio->new; $cpio->read($file); $cpio->remove('foo'); $cio->write($file); # more complex example, filtering on the fly my $cpio = Archive::Cpio->new; $cpio->read_with_handler(\*STDIN, sub { my ($e) = @_; if ($e->name ne 'foo') { $cpio->write_one(\*STDOUT, $e); } }); $cpio->write_trailer(\*STDOUT); Requirements: · Perl


Archive::Cpio Related Software