if you mean do file split like
unix split does but on pattern-matched boundaries instead of byte counts - I rather imagine something like:
(update: with linux, split with -p is available to split on a regexp - then the perl script only has to shell that and cleanup after as follows:
glob for the per sequence files, cat each 1000 files at a time together into some second naming convention and remove each 1000 per iteration - on second thoughts I prefer what follows after all!)
my $suffix = 'z';
my $sequence = 0;
my $maxseq = 1000;
my $input = shift @ARGV or die "usage";
open my $ifh, $input or die "$!: $input\n";
my $ofh;
while( <$ifh> ) {
/\AINPUT\sSEQUENCE/
and SwitchFile( $input, \$ofh, \$suffix, \$sequence, $maxseq );
$ofh or die "Unexpected prelude: $_";
print $ofh $_;
}
close $ofh;
sub SwitchFile {
my ( $input, $oref, $sref, $qref, $max ) = @_;
if ( defined( $$oref ) )
( ++$$qref < $max ) and return;
$$qref = 0;
close $$oref;
}
my $newfile = "$input." . ++$$sref;
open my $ofh, ">$newfile" or die "$!: $newfile";
$$oref = $ofh;
}
This would create the 270 files with suffixes .aa thru .jj
__________________________________________________________________________________
^M Free your mind!
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.