6 lines
100 B
Bash
6 lines
100 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
find . -name \*.tmpl -exec python generate.py --schema schema.json --template {} \;
|
||
|
|
||
|
|