forked from 07031218/normal-shell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
timesync.sh
19 lines (19 loc) · 1.01 KB
/
timesync.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#/usr/bin/env bash
#将脚本上传到linux中的/root目录,在root账户下执行bash timesync.sh
# Colors
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[0;33m'
BLUE='\033[0;34m'
PURPLE="\033[0;35m"
CYAN='\033[0;36m'
PLAIN='\033[0m'
apt install sudo -y >>/dev/null 2>&1 && sudo timedatectl set-ntp no
echo -e "${BLUE}开始获取京东服务器时间${PLAIN}"
Time=$(curl -s "https://api.m.jd.com/client.action?functionId=queryMaterialProducts&client=wh5" | grep '{"currentTime":'| sed 's/^.*"currentTime"://g' | sed 's/,"currentTime2":.*//g' | sed 's/\"//g' )
sudo timedatectl set-time "$(curl -s "https://api.m.jd.com/client.action?functionId=queryMaterialProducts&client=wh5" | grep '{"currentTime":'| sed 's/^.*"currentTime"://g' | sed 's/,"currentTime2":.*//g' | sed 's/\"//g' )"
#sudo timedatectl set-time "${Time}"
echo -e "${BLUE}当前京东服务器时间为${PLAIN}${RED}${Time}${PLAIN}"
echo -e "${BLUE}开始进行时间同步${PLAIN}"
echo -e "${BLUE}时间同步完成,脚本将自动退出。${PLAIN}"
exit