使用 strftime 命令聚合 year:month:date 的语法

syntax to aggrevate year:month:date with strftime command

我使用日期时间从系统获取当前时间并将其存储为字符串 (timenow),但是当我将它发送到 linux 到 sshclient_exec_command 中设置时存在一些行为差异。

下面是我的代码:

timenow = datetime.datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S")
command = 'date -s %s' %timenow
stdin, stdout, stderr = self._sshclient.exec_command(command, timeout=10)
try:
    command = 'date +"%Y-%m-%d %H:%M:%S"'
    stdin, stdout, stderr = self._sshclient.exec_command(command, timeout=10)
    ip_time_now = stdout.read().decode(encoding='UTF-8').rstrip('\n')
    self.logger.debug(" ip=%s timenow=%s ip_time_now=%s",ip, timenow,ip_time_now)

输出

 timenow=2016-09-07 20:15:26 ip_time_now=2016-09-07 21:06:24

timenow 和 ip_time_now 在操作上应该是相同的

在这里,如果我将 timenow 行替换为

timenow = datetime.datetime.utcnow().strftime("%H:%M:%S")  #passes, but without 
                                                      setting the year and month

输出

timenow=20:25:49 ip_time_now=2016-09-07 20:25:50 #1 sec diff is ok

注意:执行命令时输出没有异常

strftime 语法的可能解决方案是什么?

正在替换

command = 'date -s %s' %timenow

command = 'date --set "%s"' %timenow

会解决。