/usr/share/konwert/devel/frequencies is in konwert-dev 1.8-11.2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | #!/usr/bin/perl
open ZNAKI, shift;
chomp ($_ = <ZNAKI>); @znaki = split //;
close ZNAKI;
while (<>) {foreach (split //) {$ile{$_}++}}
foreach (@znaki) {$suma += $ile{$_}}
$suma /= 100;
print "\% @{[map {100 - int (100 - $ile{$_} / $suma)} @znaki]}\n @znaki\n";
|