/usr/bin/lesscpy is in python-lesscpy 0.9j-3fakesync2.
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
"""
Lesscpy run script
<jtm@robot.is>
"""
import sys, os
path = os.path.abspath(sys.argv[0])
while os.path.dirname(path) != path:
if os.path.exists(os.path.join(path, 'lesscpy', '__init__.py')):
sys.path.insert(0, path)
break
path = os.path.dirname(path)
from lesscpy.scripts import compiler
compiler.run()
|