added install scripts

This commit is contained in:
Daniel Fichtinger 2025-06-03 14:26:15 -04:00
parent 804e5a22eb
commit 877081a33d
2 changed files with 9 additions and 0 deletions

5
install.sh Executable file
View file

@ -0,0 +1,5 @@
#!/bin/sh
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
sudo cp "$SCRIPT_DIR/mailfmt" /usr/bin/mailfmt
echo "mailfmt has been installed to /usr/bin/mailfmt."

4
uninstall.sh Executable file
View file

@ -0,0 +1,4 @@
#!/bin/sh
sudo rm /usr/bin/mailfmt
echo "mailfmt has been uninstalled."