]> git.phdru.name Git - dotfiles.git/blob - bin/compyle-ptl
Set LESS_TERMCAP_* for light and dark backgrounds
[dotfiles.git] / bin / compyle-ptl
1 #! /usr/bin/env python
2
3
4 import sys
5 from quixote.ptl.ptl_compile import compile
6
7 if len(sys.argv) <= 1:
8    sys.exit(1)
9
10 for file in sys.argv[1:]:
11    compile(file, file[:-3]+'pyc')