1.0.2 • Published 4 years ago

@ornikar/clamp v1.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
4 years ago

🗜 Clamp

Actions Status Go Report Card codebeat badge GitHub tag Go version

Clamp is a useful tool to help to replace environment variables in any file using go template syntax.


🔧 Installation

Clamp is available on Linux, OSX and Windows platforms.

  • Binaries for Mac OS, Linux and Windows are available as tarballs in the release page.

  • Via Homebrew (Mac OS) or LinuxBrew (Linux)

    brew tap JulienBreux/clamp
    brew install clamp
  • Building from source Clamp was built using go 1.12 or above. In order to build Clamp from source you must:

    1. Clone this repository
    2. Add the following command in your go.mod file

      replace (
        github.com/JulienBreux/clamp => CLONED_GIT_REPOSITORY
      )
    3. Build and run the executable

      go run main.go
    4. Use it

      ./clamp

📘 Help

How to use from pipe

echo "{{ .USER }}" | clamp
# JulienBreux

How to use from file

echo "{{ .HOME }}" > home.txt
clamp home.txt
# /Users/julienbreux

📮 Contact Info

  1. Email: julien.breux@gmail.com
  2. GitHub: @JulienBreux
  3. Twitter: @JulienBreux

👮‍♂️ Security info

GPG Signature

You can download Julien Breux's public key to verify the signature.

gpg --keyserver hkps://hkps.pool.sks-keyservers.net --recv-keys 0BD023FA
1.0.2

4 years ago