
File::Find::Rule::DIZ - Rule to match the contents of a FILE_ID.DIZ

use File::Find::Rule::DIZ;
my @files = find( diz => { text => qr/stuff and things/ }, in => '/archives' );

This module will search through a ZIP archive, specifically the contents of the FILE_ID.DIZ file in the archive.

my @files = find( diz => { text => qr/stuff and things/ }, in => '/archives' );
For now, all you can do is search the text using a regex. Yehaw.


Copyright 2007 by Brian Cassidy
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
