You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rwxrob-dot/install/ubuntu/install-k9s

14 lines
275 B
Bash

#!/bin/sh
version=0.27.4
file=/tmp/k9s.tar.gz
url="https://github.com/derailed/k9s/releases/download/v${version}/k9s_Linux_amd64.tar.gz"
cleanup () {
rm -rf "$file"
}
trap cleanup EXIT
mkdir -p ~/.local/bin
curl -Lo "$file" "$url" && tar xzf "$file" -C ~/.local/bin k9s