This file contains hidden or 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 | |
# remove_evil_ubuntu_quantal.sh | |
if [ $(whoami) != "root" ]; then | |
echo "You need to run this script as a super user." | |
echo "Use 'sudo ./$script_name 2>&1 | tee log.txt' then enter your password when prompted. exorcism results will be logged to log.txt." | |
exit 1 | |
fi | |
echo "This script is going to remove bizarre spyware and upgrade you to the full Gnome3 environment. You won't be using unity any longer." | |
echo "Did you read and understand this code snippet before you tried to run it? (y/n)" |