This file is indexed.

/usr/bin/tabble-wrapper is in tabble 0.43-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
#!/bin/sh
# 2010-05-24 Modified from original sources by Jari Aalto <jari.aalto@cante.net>

Main ()
{
    if [ "$LOGNAME" ]; then
	# Signal 50 in program asks for restart
	killall -50 --user $LOGNAME tabble || tabble "$@" &
    else
	echo "[ERROR] can't restart tabble. LOGNAME not defined." >&2
	return 1
    fi
}

Main "$@"

# End of file