forked from wangwei1237/shell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path17lib.sh
83 lines (72 loc) · 1.68 KB
/
17lib.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
#################################################
# 17lib.sh is a shell library script that contains
# some functions that can be used often.
#################################################
DEBUG=1
# debug info.
# @param string info
function debug_info() {
local info=$1
if [ $DEBUG -eq 1 ]
then
echo $info
fi
}
# get the setting content (according by regular expression) from string.
#
# @param string string from which to extract the needed content.
# for example: "taskId:12345"
# @param string regular-expression-string
# for example: "(taskId).([0-9]+)"
# @param int capture number
# 1
#
# @return the captured result by the regular expression
# r1: taskId, r2: 12345
function get_content_from_string() {
if [ $# -ne 3 ]
then
echo "get_content_from_string() parameters error, please check!"
exit 1
fi
local str=$1
local reg=$2
local num=$3
echo $str | \
awk \
'
BEGIN{
reg="'${reg}'";
num="'${num}'"
}
{
if (match($0, reg, o)) {
for (i = 1; i <= num; i++) {
if (i != num) {
printf "%s ", o[i]
} else {
printf "%s", o[i]
}
}
}
}
'
}
# print top info, with limit top 10.
#
# @param none
#
# @return none
function print_top_info() {
top_title=$(top -b n1|head -7|tail -1)
cpu_top10=$(top b -n1 | head -17 | tail -11)
mem_top10=$(top -b n1|head -17|tail -10|sort -k10 -r)
cat <<EOF
--------CPU top10--------:
${top_title}
${cpu_top10}
--------Mem top10--------:
${top_title}
${mem_top10}
EOF
}