mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
12 lines
236 B
Python
12 lines
236 B
Python
|
import os
|
||
|
import sys
|
||
|
import preprocessor
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
for source in sys.argv[1:]:
|
||
|
dest = os.path.splitext(source)[0] + '.tx'
|
||
|
sys.stdin = open(source, 'r')
|
||
|
sys.stdout = open(dest, 'w')
|
||
|
preprocessor.preprocess()
|
||
|
|