Skip to content

Instantly share code, notes, and snippets.

@bmaupin
Last active February 16, 2016 17:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bmaupin/bbdeda2fd1e070161cb8 to your computer and use it in GitHub Desktop.
Save bmaupin/bbdeda2fd1e070161cb8 to your computer and use it in GitHub Desktop.
Build statifier
if [ ! -f /usr/bin/statifier ]; then
wget https://sourceforge.net/projects/statifier/files/latest/download?source=files -O statifier.tgz
tar -xvf statifier.tgz
cd statifier-*
make all
sudo make install
cd ..
rm -rf statifier*
else
echo "Statifier already installed"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment