summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 12 insertions, 1 deletions
diff --git a/README.md b/README.md
index cb60f2c6..f395e564 100644
--- a/README.md
+++ b/README.md
@@ -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