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

  • 来源:网络
  • 更新日期:2020-07-30

摘要:建站服务器 【xcall.sh】#!/bin/bashparams=$@hosts=`cat /soft/hadoop/etc/hadoop/slaves`tput setaf 2 echo =============localh

建站服务器


【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


新网虚拟主机