v0.1 - First working and stable version.

This commit is contained in:
Ze'ev Schurmann
2024-07-27 22:27:49 +02:00
parent fa2cbc3e1e
commit 43af2de8e1
6 changed files with 1303 additions and 0 deletions

22
install Normal file
View File

@@ -0,0 +1,22 @@
#!/bin/bash
if [[ $(whoami) == "root" ]]; then
if [[ -f /usr/bin/achar ]]; then
echo "Something is already installed at /usr/bin/achar!"
exit 1
else
curl -o /usr/bin/achar https://git.zaks.web.za/zaks-web/achar/raw/branch/main/achar
chmod +x /usr/bin/achar
fi
else
echo "Please run with root privilages (sudo) in order to install to /usr/bin"
exit 1
fi