/usr/share/pymt-examples/launcher-single.py is in python-pymt 0.5.1-0ubuntu3.
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 | #!/usr/bin/env python
import subprocess, sys, os
desktop_dir = os.path.join(os.path.dirname(__file__), 'desktop')
proc = subprocess.Popen([sys.executable, 'desktop-single.py'] + sys.argv[1:],
cwd=desktop_dir)
proc.wait()
|