/usr/share/games/oneisenough/run_game.py is in oneisenough 0.40-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 | #! /usr/bin/env python
import sys
import os
libdir = os.path.abspath(os.path.join(os.path.dirname(__file__), 'bin'))
sys.path.insert(0, libdir)
import main
main.main()
|