标签: linux date busybox
我目前正在使用此命令从http标头中获取日期:
wget --no-cache -S -O /dev/null google.com 2>&1 | sed -n -e 's/ *Date: *//p' -eT -eq
它的输出是:Thu, 26 Oct 2017 20:19:57 GMT
Thu, 26 Oct 2017 20:19:57 GMT
然后我需要将此输出转换为BusyBox日期命令将接受的接受输入,即:
date --set="YYYY-MM-DD HH:MM:SS"