This file is indexed.

/usr/sbin/update-dictcommon-hunspell is in dictionaries-common 1.20.5.

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
#!/usr/bin/perl -w

use strict;
use Debian::DictionariesCommon q(:all);

dico_checkroot ();

my $cachedir   = "/var/cache/dictionaries-common";
my $class      = "hunspell";
my %locales    = ();

updatedb ($class);
build_emacsen_support ();
build_squirrelmail_support ();


__END__

=head1 NAME

update-dictcommon-hunspell - rebuild hunspell database and emacsen stuff

=head1 SYNOPSIS

 update-dictcommon-hunspell

=head1 DESCRIPTION

WARNING: Not to be used from the command line unless you know very well what you are doing.

This script, when called from hunspell dict package postinst or postrm will
rebuild hunspell database as well as squirrelmail and emacsen stuff.

=head1 SEE ALSO

The dictionaries-common policy

=head1 AUTHORS

Rafael Laboissiere,
Agustin Martin

=cut