xcall集群执行命令脚本
2018-11-04 本文已影响18人
第四风111
#!/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