Last active
March 7, 2024 11:19
-
-
Save dynnamitt/fb866abcec9d5d2805b8bdc0dd4d3b45 to your computer and use it in GitHub Desktop.
Install OpenTofu via tenv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
mkdir -p $HOME/tofuutils/tenv | |
# wget https://github.com/tofuutils/tenv/releases/download/v1.2.0/tenv_v1.2.0_Linux_x86_64.tar.gz | |
tar -xvf tenv_v1.2.0* -C $HOME/tofuutils/tenv | |
for f in $HOME/tofuutils/tenv/{tenv,terraform,tofu,tf} | |
do | |
ln -s $HOME/$f $HOME/.local/bin/$(basename $f) | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ARCH linux thingy