diff options
| -rw-r--r-- | README.md | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -30,6 +30,7 @@ Gomplate is an alternative that will let you process templates which also includ - [Alpine Linux](#alpine-linux) - [use with Docker](#use-with-docker) - [manual install](#manual-install) + - [install with `go get`](#install-with-go-get) - [Usage](#usage) - [Commandline Arguments](#commandline-arguments) - [`--file`/`-f`, `--in`/`-i`, and `--out`/`-o`](#-file-f-in-i-and-out-o) @@ -46,7 +47,7 @@ Gomplate is an alternative that will let you process templates which also includ - [`slice`](#slice) - [`split`](#split) - [`splitN`](#splitn) - - [`replaceAll`](#replaceAll) + - [`replaceAll`](#replaceall) - [`title`](#title) - [`toLower`](#tolower) - [`toUpper`](#toupper) @@ -143,6 +144,16 @@ $ gomplate --help ... ``` +### install with `go get` + +If you're a Go user already, sometimes it's faster to just use `go get` to install `gomplate`: + +```console +$ go get github.com/hairyhenderson/gomplate +$ gomplate --help +... +``` + _Please report any bugs found in the [issue tracker](https://github.com/hairyhenderson/gomplate/issues/)._ ## Usage |
