You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
398 B
18 lines
398 B
#!/bin/sh
|
|
|
|
#
|
|
# This script uninstalls pokemonsay.
|
|
#
|
|
|
|
# Remove the install directory
|
|
rm -r "/home/stian/.pokemonsay/"
|
|
|
|
# Remove the bin files
|
|
rm "/home/stian/bin/pokemonsay"
|
|
rm "/home/stian/bin/pokemonthink"
|
|
|
|
# Say what's going on.
|
|
echo "'/home/stian/.pokemonsay/' directory was removed."
|
|
echo "'/home/stian/bin/pokemonsay' file was removed."
|
|
echo "'/home/stian/bin/pokemonthink' file was removed."
|