xcall集群执行命令脚本

#!/bin/bash
#查出参数个数
pcount=$#
if((pcount<1)) ; then
echo no args;
exit;
fi
echo ---------- hocalhost -------------
$@
for((host=101;host<103;host=host+1)); do
echo ---------- s$host ----------------
ssh s$host $@
done

你可能感兴趣的:(xcall集群执行命令脚本)