Bash-Snippets/cheat/uninstall.sh

6 lines
259 B
Bash
Raw Normal View History

2017-07-03 03:34:34 +02:00
#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
echo -n "Removing cheat: "
rm -f /usr/local/bin/cheat > /dev/null 2>&1 || { echo "Failed" ; echo "Error removing file, try running uninstall script as sudo"; exit 1; }
echo "Success"