Skip to content

Instantly share code, notes, and snippets.

@azcoigreach
Last active October 8, 2022 18:24
Show Gist options
  • Save azcoigreach/42a6bad4d344d9dbac729874ac313076 to your computer and use it in GitHub Desktop.
Save azcoigreach/42a6bad4d344d9dbac729874ac313076 to your computer and use it in GitHub Desktop.
Install btop++
#!/bin/bash
# install btop++ on x86_64-linux
# https://github.com/aristocratos/btop
# download btop
wget -qO btop.tbz https://github.com/aristocratos/btop/releases/latest/download/btop-x86_64-linux-musl.tbz
# extract btop
sudo tar xf btop.tbz -C /usr/local/bin bin/btop
# echo btop version
btop --version
# remove btop.tbz
rm -rf btop.tbz
# echo btop installed
echo "btop installed"
echo "usage: btop"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment