-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstate.sh
22 lines (22 loc) · 1015 Bytes
/
state.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
echo "*Time-state*
---------------------------------------------------
Time: `date`
Uptime: `uptime`
---------------------------------------------------
*CPU-state*
---------------------------------------------------
The system CPU is `echo "100-$(vmstat 1 5 | sed -n '3,$p' | awk '{x = x + $15} END {print x/5}' | awk -F. '{print $1}')" | bc`%
---------------------------------------------------
*Memory-state*
---------------------------------------------------
`print -C 2 \`free -h | grep "Mem" | awk '{print "Total:","Used:","Free:","Shared:","Buff/Cache:","Available:",$2,$3,$4,$5,$6,$7}'\``
---------------------------------------------------
*Disk-state*
---------------------------------------------------
`df -h | grep "Filesystem" | awk '{print $1,$2,$3,$5}'`
`df -h | grep "/dev/vda1" | awk '{print $1,$2,$3,$5}'`
---------------------------------------------------
*V2ray-state*
---------------------------------------------------
`/usr/sbin/service v2ray status | sed -n '3,4p' | sed 's/^[ \t]*//g'`
"