#!/usr/bin/env python3
import sys
from kalamine import make_layout

for f in sys.argv[1:]:  # who needs argparse / docopt?
    make_layout(f)
