Last active
October 8, 2022 18:24
-
-
Save azcoigreach/42a6bad4d344d9dbac729874ac313076 to your computer and use it in GitHub Desktop.
Install btop++
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/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