码迷,mamicode.com
首页 > 系统相关 > 详细

用shell写的基本监控菜单

时间:2018-05-25 11:15:30      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:Shell

#!/bin/bash

while :
do
echo "1. 查看CPU

  1. 查看内存
  2. 查看磁盘
  3. 查看IP
  4. 退出"

read -p "请选择菜单: " item
if [ ${item} -eq 1 ]; then
echo "CPU工作频率如下:"
cat /proc/cpuinfo | grep MH
read -p "输入回车继续"
fi

if [ ${item} -eq 2 ]; then
echo "可用内存如下: "
free | grep +
read -p "输入回车继续"
fi

if [ ${item} -eq 3 ]; then
echo "磁盘数据如下: "
df -h | grep boot
read -p "输入回车继续"
fi

if [ ${item} -eq 4 ]; then
echo "IP信息如下: "
ifconfig | grep "Bcast"
read -p "输入回车继续"

fi
if [ ${item} -eq 5 ]; then
exit 0
fi
done

用shell写的基本监控菜单

标签:Shell

原文地址:http://blog.51cto.com/13765598/2120056

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!