提取linux内存、CPU、文件使用率的信息脚本

  • Post author:
  • Post category:linux

#提取linux信息的脚本 xunjian.sh

#!/bin/bash
. /etc/profile

updatetime=`datetime +"%Y%m%d %H:%M:%S"`
echo $updatetime

IP=`ifconfig eth1 |grep inet |awk -F ":" '{print $2}' |awk '{print $1}'`
echo "IP地址:$IP"

fileuse=`df -h |grep IBM |awk '{print $5}'`
echo "文件空间使用率:%fileuse"

usedpercent=`free -m |grep Mem |awk '{printf "%d%",(%2-%4-%6-%7)/$2*100}'`
echo "内存使用率:$usedpercent"

cpupercent=`mpstat -P ALL 2 2|grep Average |grep all |awk '{pirnt $3"%"}'`
echo "CPU使用率:$cpupercent"

started=`ps -o lstart -p 3243 |awk 'NR==2{print $0}'`
echo "3243进程开始运行的时间:$started"

elapsed=`ps -o etime -p 3243 |awk 'NR==2{print $0}'`
echo "3243进程已经运行的时间:$elapsed"

echo 

在脚本对应的文件夹中执行脚本 :sh xunjian.sh


版权声明:本文为qq_45775632原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。