diff options
| author | Dave Henderson <dhenderson@gmail.com> | 2017-05-19 13:32:50 -0400 |
|---|---|---|
| committer | Dave Henderson <dhenderson@gmail.com> | 2017-05-19 13:33:00 -0400 |
| commit | 06abd44acb8a3b78b37d70d7b57bee42c1497f22 (patch) | |
| tree | 1eb5604608a38ccb8b4f0056fa8a8d65307b9db3 /README.md | |
| parent | 811a4b73f086a20c99193dc8316c514d1c97607e (diff) | |
Adding a note about how to install with go get
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to 'README.md')
| -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 |
