Last active
May 16, 2017 09:03
-
-
Save pmoust/1c9971f95409ca5ae83e to your computer and use it in GitHub Desktop.
Install htop in Darwin
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
HTOP_VERSION="2.0.0" | |
brew remove htop 2>/dev/null | |
rm -rf `which htop` 2>/dev/null | |
cd /tmp | |
wget http://hisham.hm/htop/releases/${HTOP_VERSION}/htop-${HTOP_VERSION}.tar.gz | |
tar zxvf htop-${HTOP_VERSION}.tar.gz | |
cd htop-${HTOP_VERSION} | |
./configure && make && make install && rm -rf /tmp/htop-${HTOP_VERSION}* | |
popd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
dev-tools, gcc etc needed of course