forked from trimstray/multitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.sh
executable file
·60 lines (32 loc) · 1.14 KB
/
setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env bash
readonly _dir="$(dirname "$(readlink -f "$0")")"
# shellcheck disable=SC2034
_arg="$1"
if [[ "$1" == "install" ]] ; then
printf "%s\\n" "Create symbolic link to /usr/local/bin"
if [[ -e "${_dir}/bin/multitor" ]] ; then
if [[ ! -e "/usr/local/bin/multitor" ]] ; then
ln -s "${_dir}/bin/multitor" /usr/local/bin
fi
fi
printf "%s\\n" "Create man page to /usr/local/man/man8"
if [[ -e "${_dir}/static/man8/multitor.8" ]] ; then
if [[ ! -e "/usr/local/man/man8/multitor.8.gz" ]] ; then
mkdir -p /usr/local/man/man8
cp "${_dir}/static/man8/multitor.8" /usr/local/man/man8
gzip /usr/local/man/man8/multitor.8
fi
fi
elif [[ "$1" == "uninstall" ]] ; then
printf "%s\\n" "Remove symbolic link from /usr/local/bin"
if [[ -L "/usr/local/bin/multitor" ]] ; then
unlink /usr/local/bin/multitor
fi
printf "%s\\n" "Remove man page from /usr/local/man/man8"
if [[ -e "/usr/local/man/man8/multitor.8.gz" ]] ; then
rm /usr/local/man/man8/multitor.8.gz
fi
else
printf "Usage:\\n ./setup.sh install (Install)\\n ./setup.sh uninstall (Uninstall)\\n"
fi
exit 0