mirror of https://github.com/midoks/mdserver-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
184 B
7 lines
184 B
2 years ago
|
#!/bin/bash
|
||
|
|
||
|
DST_DIR=/www/server/op_waf
|
||
|
DIS_FILE=${DST_DIR}/cpu.info
|
||
|
|
||
|
CPU_USAGE=`top -bn 1 | fgrep 'Cpu(s)' | awk '{print 100 -$8}' | awk -F . '{print $1}'`
|
||
|
echo $CPU_USAGE > $DIS_FILE
|