码迷,mamicode.com
首页 > 其他好文 > 详细

基于ssh的系统运行时间监视器

时间:2020-06-28 12:45:16      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:down   src   monit   echo   test   ash   The   one   moni   

一、脚本

#!/bin/bash
#****************************************************
#Date:        2020-06-28
#Author:      Damon Ye
#FileName:   UpTimeMonitor.sh
#Description:The test script
#****************************************************
IP_LIST="10.0.0.233"
USER="root"
red="\033[31m"
shutdown="\033[0m"
for ip in ${IP_LIST}
  do
    echo -e "${red}Uptime${shutdown} of $ip is: `ssh ${USER}@${IP_LIST} ‘uptime‘ | awk ‘{print $3 $4}‘`"                                                                                     
  done

 技术图片

 

基于ssh的系统运行时间监视器

标签:down   src   monit   echo   test   ash   The   one   moni   

原文地址:https://www.cnblogs.com/ytdyz/p/13202057.html

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