本文共 583 字,大约阅读时间需要 1 分钟。
declare -a hosts 声明数组
declare -i elements i 声明2个整形变量readarray -t删除文本结尾的换行符
crontab条目如下:
10 * * * * /root/detection_tool/sync_time.sh /root/detection_tool/time_sync_hosts
我们用来多台服务器时间同步shell scripts如下:
#!/bin/bash
declare -a hosts declare -i elements i readarray -t hosts < $1 elements=${#hosts[@]} for ((i=0;i<$elements;i++)); do echo "${hosts[${i}]}:" ssh -i /root/xxx.key root@${hosts[${i}]} 'ntpdate -u time.rightscale.com' ssh -i /root/xxx.key root@${hosts[${i}]} 'service ntpd restart' done exit 0本文转自chenzudao51CTO博客,原文链接:http://blog.51cto.com/victor2016/1873620,如需转载请自行联系原作者