Skip to content

Instantly share code, notes, and snippets.

@dynnamitt
Last active March 7, 2024 11:19
Show Gist options
  • Save dynnamitt/fb866abcec9d5d2805b8bdc0dd4d3b45 to your computer and use it in GitHub Desktop.
Save dynnamitt/fb866abcec9d5d2805b8bdc0dd4d3b45 to your computer and use it in GitHub Desktop.
Install OpenTofu via tenv
#!/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
@dynnamitt
Copy link
Author

ARCH linux thingy

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment