2016-07-21 12:06:39 +00:00
|
|
|
Mo is a mustache template rendering software written in bash. It inserts
|
|
|
|
environment variables into templates.
|
|
|
|
|
|
|
|
Simply put, mo will change {{VARIABLE}} into the value of that
|
|
|
|
environment variable. You can use {{#VARIABLE}}content{{/VARIABLE}} to
|
|
|
|
conditionally display content or iterate over the values of an array.
|
|
|
|
|
|
|
|
Learn more about mustache templates at https://mustache.github.io/
|
2016-07-27 14:56:33 +00:00
|
|
|
|
|
|
|
Simple usage:
|
|
|
|
|
2020-08-05 20:44:04 +00:00
|
|
|
mo [OPTIONS] filenames...
|
2016-07-27 14:56:33 +00:00
|
|
|
|
2020-08-05 20:44:04 +00:00
|
|
|
Options:
|
|
|
|
|
|
|
|
-u, --fail-not-set
|
|
|
|
- Fail upon expansion of an unset variable.
|
|
|
|
-x, --fail-on-function
|
|
|
|
- Fail when a function returns a non-zero status code.
|
|
|
|
-e, --false
|
|
|
|
- Treat the string "false" as empty for conditionals.
|
|
|
|
-h, --help
|
|
|
|
- This message.
|
|
|
|
-s=FILE, --source=FILE
|
|
|
|
- Load FILE into the environment before processing templates.
|
|
|
|
|
|
|
|
MO_VERSION=2.2.0
|