mirror of
https://github.com/Kilian/Trimage.git
synced 2026-01-26 01:58:41 -05:00
7 lines
229 B
Python
7 lines
229 B
Python
#!/usr/bin/env python
|
|
import subprocess
|
|
import os, sys
|
|
|
|
if __name__ == "__main__":
|
|
path = "/usr/local/share/trimage/trimage.py" #yeah so this isn't the nices tway...
|
|
subprocess.call([sys.executable, path] + sys.argv[1:])
|