This file is indexed.

/usr/bin/gtklick is in gtklick 0.6.4-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
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# gtklick
#
# Copyright (C) 2008-2010  Dominic Sacré  <dominic.sacre@gmx.de>
#
# This program 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 2 of the License, or
# (at your option) any later version.


import sys
sys.path.append('/usr/share/gtklick')
from gtklick.gtklick import GTKlick
import os.path

bin_dir = os.path.abspath(os.path.dirname(sys.argv[0]))
share_dir = os.path.join(os.path.split(bin_dir)[0], 'share/gtklick')
locale_dir = os.path.join(os.path.split(bin_dir)[0], 'share/locale')

app = GTKlick(sys.argv[1:], share_dir, locale_dir)
app.run()