forked from tete1030/safe-debugger-action
-
Notifications
You must be signed in to change notification settings - Fork 24
/
tmate.sh
executable file
·61 lines (61 loc) · 2.08 KB
/
tmate.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
61
#!/usr/bin/env bash
#=================================================
# Description: Install the latest version tmate
# System Required: Debian/Ubuntu or other
# Version: 1.0
# Lisence: MIT
# Author: P3TERX
# Blog: https://p3terx.com
#=================================================
[ $(uname) != Linux ] && {
echo -e "This operating system is not supported."
exit 1
}
[ $EUID != 0 ] && SUDO=sudo
$SUDO echo || exit 1
Green_font_prefix="\033[32m"
Red_font_prefix="\033[31m"
Green_background_prefix="\033[42;37m"
Red_background_prefix="\033[41;37m"
Font_color_suffix="\033[0m"
INFO="[${Green_font_prefix}INFO${Font_color_suffix}]"
ERROR="[${Red_font_prefix}ERROR${Font_color_suffix}]"
ARCH=$(uname -m)
if [[ ${ARCH} == "x86_64" ]]; then
ARCH="amd64"
elif [[ ${ARCH} == "i386" || ${ARCH} == "i686" ]]; then
ARCH="i386"
elif [[ ${ARCH} == "aarch64" ]]; then
ARCH="arm64v8"
else
echo -e "${ERROR} This architecture is not supported."
exit 1
fi
echo -e "${INFO} Check the version of tmate ..."
tmate_ver=$(curl -fsSL https://api.github.com/repos/tmate-io/tmate/releases | grep -o '"tag_name": ".*"' | head -n 1 | sed 's/"//g;s/v//g' | sed 's/tag_name: //g')
[ -z $tmate_ver ] && {
echo -e "${ERROR} Unable to check the version, network failure or API error."
exit 1
}
[ $(command -v tmate) ] && {
[[ $(tmate -V) != "tmate $tmate_ver" ]] && {
echo -e "${INFO} Uninstall the old version ..."
$SUDO rm -rf $(command -v tmate)
} || {
echo -e "${INFO} The latest version is installed."
exit 0
}
}
tmate_name="tmate-${tmate_ver}-static-linux-${ARCH}"
echo -e "${INFO} Download tmate ..."
curl -fsSLO "https://github.com/tmate-io/tmate/releases/download/${tmate_ver}/${tmate_name}.tar.xz" || {
echo -e "${ERROR} Unable to download tmate, network failure or other error."
exit 1
}
echo -e "${INFO} Installation tmate ..."
tar Jxvf ${tmate_name}.tar.xz >/dev/null
$SUDO mv ${tmate_name}/tmate /usr/local/bin && echo -e "${INFO} tmate successful installation !" || {
echo -e "${ERROR} tmate installation failed !"
exit 1
}
rm -rf ${tmate_name}*