设置服务器同步时间批处理脚本-Linux篇

1、新建一个同步时间的shell脚本

#!/bin/bash
PATH=$PATH:/usr/bin/:/sbin/
sudo ntpdate -u time.windows.com
sudo hwclock -w

2、将shell脚本添加到crontab

[root@localhost ~]# crontab -e

添加脚本如下:

*/5 * * * * bash /root/SyncTime.sh

扩展阅读

f1  f2 f3  f4 f5  program
分钟   小时 月份中的第几日 月份 星期中的第几天 要执行的程序


参考文章

http://www.linuxsky.org/doc/admin/200802/247.html





你可能感兴趣的:(shell,脚本,服务器,bash,扩展,Path)