/usr/bin/langident is in liblingua-identify-perl 0.56-1.
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 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 | #!/usr/bin/perl
eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
if 0; # not running under some shell
use warnings;
use strict;
use 5.006;
use Getopt::Std qw(getopts);
use Lingua::Identify qw(:all);
# get the user options
our %opts = get_options();
# special requests
show_help() if $opts{h};
show_version() if $opts{v};
show_languages() if $opts{l};
choose_languages() if $opts{o};
# check options for sanity
if ($opts{m}) {
$opts{m} > 0 || die "langident: please provide a positive value for -m\n";
$opts{a} = $opts{m};
}
$opts{s} ||= "\n";
# identify the language...
if (@ARGV) { # ...of files
my @files = @ARGV;
for (sort @files) {
-f && -r && -s || next;
if ($opts{E}) {
open (FILE,"<:encoding($opts{E})" ,$_) ||
do {print STDERR "Could not open $_ ($!)\n" ; next};
} else {
open (FILE,"<:utf8" ,$_) || do {print STDERR "Could not open $_ ($!)\n" ; next};
}
local $/ = $opts{s};
print $_, ":", (join $", ident(<FILE>)), "\n";
close (FILE);
}
}
else { # ...of STDIN
binmode(STDIN, ":utf8");
print ((join $", ident(<>)), "\n");
}
#
# subroutines
#
###
sub get_options {
my %opts;
getopts('acde:hlo:ps:vm:E:', \%opts );
foreach my $key ( keys %opts )
{
$opts{$key} = 1 unless defined $opts{$key}
}
debug_options( %opts ) if $opts{d};
return %opts;
}
###
sub debug_options {
my %opts = @_;
#local $^W = 0;
no warnings;
{
print STDERR <<"HERE";
-------------------------------------------------------------------------
Command line options
-------------------------------------------------------------------------
a $opts{a}
c $opts{c}
d $opts{d}
e $opts{e}
h $opts{h}
l $opts{l}
m $opts{m}
o $opts{o}
p $opts{p}
s $opts{s}
v $opts{v}
-------------------------------------------------------------------------
HERE
}
}
###
sub show_help {
die "Usage: langident file1 file2
or: langident -a -p file
or: cat file | langident
langident: identifies the languages files are written in
Options:
-a show all results
-c show confidence level
-d debug
-e METHODS select the method(s) to use
-h displays this messages and exit
-l list available languages and exit
-m NUMBER sets maximum number of results (languages) to display
-o LANGS work only with specified languages
-p also show percentages
-s SIZE maximum size to examine
-v show version and exit
"
}
###
sub show_version {
die "langident version 0.08 (Lingua::Identify ", Lingua::Identify->VERSION, ")\n";
}
###
# identify the language
sub ident {
if ($opts{a} || $opts{p} || $opts{c}) {
my @results = langof(get_config(),@_);
@results || return ();
if ($opts{m}) {
my $m = $opts{m} > @results / 2 ? @results - 1 : (($opts{m} * 2) - 1);
@results = @results[0 .. $m];
}
my @confidence = $opts{c} ? scalar confidence(@results) * 100 : ();
@results = @results[0,1] unless $opts{a};
@results = grep /[a-z]{2}/, @results unless $opts{p};
for (@results) {$_*=100 if /\d/}
return (shift @results, @confidence, @results);
}
else {
return (langof(get_config(),@_))[0];
}
}
###
# HELP!!! I'm an innocent comment trapped in here by an evil programmer :-(
# Please get me out of here :-( My family is probably looking for me :-(
###
sub get_config {
my %config;
# get the methods to use
if (defined $opts{e}) {
my %methods;
for (get_all_methods()) { $methods{$_} = 0 }
for (split /,/, $opts{e}) {
my ($m, $v) = split /=/;
defined $methods{$_} || next;
$methods{$_} = $v || 1;
}
$config{'method'} = \%methods;
}
return \%config;
}
###
sub choose_languages {
my $t = set_active_languages(split /,/, $opts{o});
$opts{m} = $t if $opts{m} > $t;
}
# show all available languages
sub show_languages {
for (sort (get_all_languages())) {
print uc $_, " - ", ucfirst name_of($_) ,"\n";
}
exit;
}
__END__
=head1 NAME
langident - identifies the language files are written in
=head1 SYNOPSIS
langident [OPTIONS] file1 [file2 ...]
=head1 DESCRIPTION
Identifies the language files are written in using Perl module
Lingua::Identify.
=head2 OPTIONS
=head2 -a
Show all results (not just the most probable language).
=head2 -c
Show confidence level for most probable language (it will be the first value
right after the most probable language).
=head2 -d
Debug (development only).
=head2 -E ENCODING
Select an input encoding. Defaults to UTF-8.
# use ISO-8859-1 (latin1)
langident -E ISO-8859-1 file
=head2 -e METHODS
Select the method(s) to use. There are three ways of doing this:
# simply using a method
langident -e ngrams3 file
# using several methods (separate them with a comma)
langident -e prefixes3,suffixes3
# using several methods and assign different weights to each of them
langident -e smallwords=2,prefixes=1,ngrams3=1.3
The available methods are the following: B<smallwords>, B<prefixes1>,
B<prefixes2>, B<prefixes3>, B<prefixes4>, B<suffixes1>, B<suffixes2>,
B<suffixes3>, B<suffixes4>, B<ngrams1>, B<ngrams2>, B<ngrams3> and B<ngrams4>.
=head2 -h
Display help message and exit.
=head2 -l
List all available languages and exit.
=head2 -m NUMBER
Set maximum number of results (languages) to display (shows the N most probable
languages, by descending order of probability).
Overrides the -a switch.
=head2 -o LANGUAGES
Only work with specified languages.
# identify between Portuguese and English only
langident -o pt,en *
=head2 -p
Also show percentages.
=head2 -s SIZE
Maximum size to examine.
=head2 -v
Show version and exit.
=head1 EXAMPLES
Use methods ngrams2 and ngrams1, assigning the double of importance to ngrams2
(-e switch); output will include the three most probable languages (-m switch)
with its percentages (-p switch) and also the confidence level (-c switch) of
the first result.
$ langident -e ngrams2=2,ngrams1 -c -p -m 3 README
README:en 65.7209505939491 7.8971987481393 ga 4.11905889385895 tr 4.08487011400505
$
=head1 TO DO
=over 6
=item * Add a switch to ignore HTML tags (and maybe other formats too)
=back
=head1 SEE ALSO
Lingua::Identify(3), Text::ExtractWords(3), Text::Ngram(3), Text::Affixes(3).
A linguist and/or a shrink.
The latest CVS version of C<Lingua::Identify> (which includes I<langident>) can
be attained at http://natura.di.uminho.pt/natura/viewcvs.cgi/Lingua/Identify/
ISO 639 Language Codes, at http://www.w3.org/WAI/ER/IG/ert/iso639.htm
=head1 AUTHOR
Jose Alves de Castro, E<lt>cog@cpan.orgE<gt>
=head1 COPYRIGHT AND LICENSE
Copyright 2004 by Jose Alves de Castro
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
|