You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
174 B

  1. #!/usr/bin/env python
  2. import sys
  3. from jinja2 import Environment
  4. env = Environment()
  5. for template in sys.argv[1:]:
  6. with open(template) as t:
  7. env.parse(t.read())