Skip to content

Instantly share code, notes, and snippets.

@tacone
tacone / ubuntu-install-tidy-html5.sh
Last active December 11, 2016 01:26
Install html5 tidy on ubuntu as a deb package
#!/bin/bash
# Check if user is root
if [ $(id -u) != "0" ]; then
echo "Error: You must be root to run this script, please use root to install the software."
exit 1
fi
apt-get remove libtidy-0.99-0 tidy
apt-get install git-core automake libtool checkinstall