opengnsys_ipxe/src/util/zfilelen.pl

9 lines
75 B
Perl

#!/usr/bin/perl -w
use bytes;
local $/;
$_ = <>;
print length($_);
exit;