/usr/bin/phatch is in phatch-cli 0.2.7.1-3.1.
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
"""Launch script from the bin folder."""
import sys
if sys.version_info[0] != 2:
sys.exit('Sorry, Phatch is only compatible with Python 2.x!\n')
sys.path.insert(0,'/usr/share/phatch/');import phatch
from core import config
config_paths = config.init_config_paths()
from app import main
main(config_paths, app_file = __file__)
|