This file is indexed.

/usr/bin/odfextract is in libopenoffice-oodoc-perl 2.125-3.

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

eval 'exec /usr/bin/perl  -S $0 ${1+"$@"}'
    if 0; # not running under some shell
#-----------------------------------------------------------------------------
#	$Id : odfextract 0.4 2008-05-04 JMG$
#-----------------------------------------------------------------------------

=head1	NAME

odfextract - Text selection and copy from one document to another one

=head1	SYNOPSIS

This sample script extracts every text element matching a given
pattern (string or regex) from a source document and appends it
to a target document. The target document must be an existing one
(empty or not).

The first argument of the command line is the source file name,
the second one is the target file, the third one is the selection
filter (i.e. any quoted string or Perl regular expression)

=cut

use OpenOffice::OODoc	2.101;

die "Usage : odfextract source_file target_file filter\n"
	unless ($ARGV[0] && $ARGV[1] && $ARGV[2]);

	# document objects initialization
print "Opening $ARGV[0] as source document...\n";
my $source_doc = odfText(file => $ARGV[0])
	or die "$ARGV[0] is not a regular ODF file\n";
print "Opening $ARGV[1] as target document...\n";
my $target_doc = odfText(file => $ARGV[1])
	or die "$ARGV[1] is not a regular ODF file\n";

	# the imported elements will be appended to the document body
my $root_element = $target_doc->getBody;

	# selection & transfer are done here
print "Selecting the content matching $ARGV[2]...\n";
$target_doc->appendElement($root_element, $_)
	for $source_doc->selectElementsByContent($ARGV[2])->copy;

	# commit the changes in target file
print "Saving the selection in $ARGV[1]...\n";
$target_doc->save;

print "Job complete\n";
exit;

#----------------------------------------------------------------------