From 6094413074598fe23f990982207dcdd087d49d45 Mon Sep 17 00:00:00 2001 From: Unbewohnte Date: Sun, 3 Apr 2022 14:16:54 +0300 Subject: [PATCH] Installation; uninstallation scripts --- install.sh | 7 +++++++ uninstall.sh | 1 + 2 files changed, 8 insertions(+) create mode 100755 install.sh create mode 100755 uninstall.sh diff --git a/install.sh b/install.sh new file mode 100755 index 0000000..5be59f4 --- /dev/null +++ b/install.sh @@ -0,0 +1,7 @@ +if [ -e charify ] +then + mv charify /usr/local/bin/ +else + echo "'charify' not found" + exit 1 +fi diff --git a/uninstall.sh b/uninstall.sh new file mode 100755 index 0000000..4242aee --- /dev/null +++ b/uninstall.sh @@ -0,0 +1 @@ +rm /usr/local/bin/charify