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

前端之家收集整理的这篇文章主要介绍了shell脚本(查看多台服务器端口)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


【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

原文链接:https://www.f2er.com/bash/392350.html

猜你在找的Bash相关文章