标签:class for style passwd 1.3 array 执行 密码 rem
1、配置ssh
2、远程执行脚本
#!/bin/bash remote_cmd="echo root@123 | passwd --stdin root" ip_array=( 10.0.1.1 10.0.1.2 10.0.1.3 ) for ip in ${ip_array[*]} do ssh root@$ip $remote_cmd done
标签:class for style passwd 1.3 array 执行 密码 rem
原文地址:https://www.cnblogs.com/water-sky/p/10238054.html