This file is indexed.

/usr/bin/isoquery is in isoquery 1.7-1build1.

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
#! /usr/bin/python
# - encoding: UTF-8 -
#
# Copyright © 2007-2012 Tobias Quathamer
#
# This file is part of isoquery.
#
# isoquery is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# isoquery is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

from isoquery import cmdline_parser

# Set up command line options and possible arguments
isoquery_cmdline_parser = cmdline_parser.CmdlineParser()
(options, arguments) = isoquery_cmdline_parser.parse()

# Determine which module to load for further processing
if options.iso == "3166":
    from isoquery import xmlfile_3166
    xml = xmlfile_3166.XMLFile_3166(options)
elif options.iso == "3166-2":
    from isoquery import xmlfile_3166_2
    xml = xmlfile_3166_2.XMLFile_3166_2(options)
elif options.iso == "639":
    from isoquery import xmlfile_639
    xml = xmlfile_639.XMLFile_639(options)
elif options.iso == "639-3":
    from isoquery import xmlfile_639_3
    xml = xmlfile_639_3.XMLFile_639_3(options)
elif options.iso == "4217":
    from isoquery import xmlfile_4217
    xml = xmlfile_4217.XMLFile_4217(options)
elif options.iso == "15924":
    from isoquery import xmlfile_15924
    xml = xmlfile_15924.XMLFile_15924(options)

xml.show_codes(arguments)