2
0
mirror of https://github.com/alexanderepstein/Bash-Snippets synced 2018-11-08 02:59:35 +01:00
Bash-Snippets/movies/uninstall.sh

6 lines
261 B
Bash
Raw Normal View History

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