Skip to content

Instantly share code, notes, and snippets.

@pmoust
Last active May 16, 2017 09:03
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pmoust/1c9971f95409ca5ae83e to your computer and use it in GitHub Desktop.
Save pmoust/1c9971f95409ca5ae83e to your computer and use it in GitHub Desktop.
Install htop in Darwin
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
@pmoust
Copy link
Author

pmoust commented Feb 17, 2016

dev-tools, gcc etc needed of course

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