/usr/bin/enemies-of-carlotta is in enemies-of-carlotta 1.2.6-4.
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 | #!/usr/bin/python
#
# This file works as the Enemies of Carlotta startup wrapper. The real
# program is in eoc.py, stored in SHAREDIR (see below). It is large enough
# that the time Python takes to parse and compile it to bytecode is
# significant, therefore we use a very short wrapper (this file) and
# install eoc.py in a way that allows it to be compiled, thus reducing
# startup time.
SHAREDIR="/usr/share/enemies-of-carlotta"
import sys
sys.path.insert(0, SHAREDIR)
import eoc
eoc.main(sys.argv[1:])
|