This file is indexed.

/usr/share/tkinspect/version.tcl is in tkinspect 5.1.6p10-4.

This file is owned by root:root, with mode 0o644.

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
#
# $Id: version.tcl,v 1.15 2003/06/21 00:19:56 patthoyts Exp $
#
# Contains version numbers for tkinspect-5.
#

proc version_init {} {
    global tkinspect tk_version tk_patchLevel
    set tkinspect(release) 5.1.6p10
    set tkinspect(release_date) "21 Jun 2003"
    scan $tk_version "%d.%d" major minor
    if {$major < 8} {
	puts stderr \
            "tkinspect-$tkinspect(release) requires Tk 8.x,\
             you appear to be running Tk $major.$minor"
	exit 1
    }
    if {[scan $tk_patchLevel "4.0b%d" beta] == 1 && $beta < 4} {
	tk_dialog .warning "Warning!" \
            "tkinspect-$tkinspect(release) has only been tested on 4.0b4.\
            You might have problems running on $tk_patchLevel." warning 0 Ok
    }
}