Try this (I was bored:):
#! perl -slw
use strict;
our $BUFN //= 1024; $BUFN *= 4096;
our $SIG //= '68 64 76 64 00 00 00 11 64 61 74 61 00 00 00 15 00 00 0
+0 00 02 00 00 00';
$SIG =~ tr[ ][]d;
$SIG = pack 'H*', $SIG;
open my $in, '<:raw', $ARGV[0] or die $!;
my( $offset, $buffer ) = ( 0, '' );
while( sysread( $in, $buffer, $BUFN, length $buffer ) ) {
my $pos = 1+index( $buffer, $SIG );
if( $pos ) {
print "Found signature at offset: ", $offset + $pos - 1;
exit;
}
$offset += length( $buffer ) - length( $SIG );
$buffer = substr $buffer, - length $SIG;
}
close $in;
print "Signature not found";
__END__
02/02/2015 15:42 10,737,418,241 big.csv
C:\test>junk71 -BUFN=4096 -SIG="52 5f d7 58 22 0d 0a 61 68 73 68 77 65
+ 2c 38 30 33 37 31 37 38 35 2c 46" big.csv
Found signature at offset: 1073741817
With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
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.