mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
318 B
Perl
20 lines
318 B
Perl
while (<>) {
|
|
chomp;
|
|
if (/^mozilla.exe/) {
|
|
$start = 1;
|
|
}
|
|
if ($start) {
|
|
chomp;
|
|
@fields = split(/ */);
|
|
$bytes = $fields[2];
|
|
$bytes =~ s/,//g;
|
|
$codesize += $bytes;
|
|
}
|
|
}
|
|
printf "%8.2f K codesize\n", toK($codesize);
|
|
|
|
sub toK()
|
|
{
|
|
return $_[0] / 1024;
|
|
}
|