bash-templater icon indicating copy to clipboard operation
bash-templater copied to clipboard

Very simple templating system that replace {{VAR}} by $VAR environment value, supports defines

BASH Templater

Very simple templating system that replace {{VAR}} by $VAR environment value Supports default values by writting {{VAR=value}} in the template

Author

Sébastien Lavoie [email protected]

Johan Haleby

See http://code.haleby.se/2015/11/20/simple-templating-engine-in-bash/ and http://blog.lavoie.sl/2012/11/simple-templating-system-using-bash.html for more details

Installation

To install templater in linux type:

sudo curl -L https://raw.githubusercontent.com/johanhaleby/bash-templater/master/templater.sh -o /usr/local/bin/templater
sudo chmod +x /usr/local/bin/templater

Usage

VAR=value templater template

Read variables from file:

templater template -f variables.txt

e.g.:

# variables.txt
# The author
AUTHOR=Johan
# The version
VERSION=1.2.3

Don't print any warning messages:

templater template -f variables.txt -s

Examples

See examples/