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

shell脚本(查看多台服务器端口)

时间:2017-07-02 00:10:44      阅读:314      评论:0      收藏:0      [点我收藏+]

标签:linux   脚本   


【xcall.sh】

#!/bin/bash

params=$@

hosts=`cat /soft/hadoop/etc/hadoop/slaves`

tput setaf 2

     echo =============localhost==================

     tput setaf 7

     $params

for host in $hosts ; do

     tput setaf 2

     echo =============$host===========================

     tput setaf 7

     ssh -4 $host "source /etc/profile ; $params"

done


shell脚本(查看多台服务器端口)

标签:linux   脚本   

原文地址:http://13088442.blog.51cto.com/13078442/1943670

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