xcall叢集執行命令指令碼

weixin_33936401發表於2018-11-04
#!/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

相關文章