linux下同步时间脚本
linux下同步时间脚本
#!/bin/bash # ntpd服务器同步时间 ntpd_num=`ps -ef |grep -v grep |grep ntpd |wc -l` if [ ntpd_num = 0 ];then service ntpd restart sleep 3 else ntpdate -u cn.ntp.org.cn sed -i s/"^server.*iburst$"/"server cn.ntp.org.cn"/g /etc/ntp.conf service ntpd restart fi