-
Notifications
You must be signed in to change notification settings - Fork 47
/
utils.sh
executable file
·95 lines (73 loc) · 1.48 KB
/
utils.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#!/bin/bash
#
# Set colors
#
bold=$(tput bold)
underline=$(tput sgr 0 1)
reset=$(tput sgr0)
purple=$(tput setaf 171)
red=$(tput setaf 1)
green=$(tput setaf 76)
tan=$(tput setaf 3)
blue=$(tput setaf 38)
#
# Headers and Logging
#
e_header () {
printf "\n${bold}${purple}========== %s ==========${reset}\n" "$@"
}
e_arrow() {
printf "➜ $@\n"
}
e_success() {
printf "${green}✔ %s ${reset}\n" "$@"
}
e_error() {
printf "${red}✖ %s ${reset}\n" "$@"
}
e_warning() {
printf "${tan}➜ %s ${reset}\n" "$@"
}
e_underline() {
printf "${underline}${bold}%s${reset}\n" "$@"
}
e_bold() {
printf "${bold}%s${reset}\n" "$@"
}
e_note() {
printf "${underline}${bold}${blue}Note:${reset} ${blue}%s${reset}\n" "$@"
}
seek_confirmation() {
printf "\n${bold}$@${reset}"
read -p " (y/n) " -n 1
printf "\n"
}
# Test whether the result of an 'ask' is a confirmation
is_confirmed() {
if [[ "$REPLY" =~ ^[Yy]$ ]]; then
return 0
fi
return 1
}
# command test
type_exists() {
if [ $(type -P $1) ]; then
return 0
fi
return 1
}
# os test
is_os() {
if [[ "${OSTYPE}" == $1* ]]; then
return 0
fi
return 1
}
# join
function join_by { local IFS="$1"; shift; echo "$*"; }
# send dingTalk
dingTalk() {
DING="https://oapi.dingtalk.com/robot/send?access_token="$DINGTOKEN
MSG=`printf '{"msgtype": "text", "text": {"content": "%s"}}' "$1"`
curl ${DING} -H 'Content-Type: application/json' -d "$MSG" > /dev/null 2>&1
}