摘要: 几个经典的shell脚本 ###实现脚本同步 #!/bin/env bash # 该脚本用于时间同步 ntp-server=10.1.1.1 count=0 while true do ntpdate $ntp-srever &>/dev/null if [ $? -ne 0 ];then echo "system date 阅读全文
posted @ 2021-09-27 15:28 biubiu_Li 阅读(213) 评论(0) 推荐(0)