Typica is a free program for professional coffee roasters. https://typica.us
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.

build 157B

12345678
  1. #!/bin/bash
  2. cp -r src/resources/* output/
  3. for f in src/pages/*.m4; do
  4. m4 src/template.m4 "$f" | sed '/^$/d' > output/"`basename -s .m4 "$f"`.html";
  5. done;