最初的腳本是一個前輩維護的,shell腳本,太難懂了,老大讓我重新用python寫一遍,功能如下,就是獲取svn log中的時間戳字段
]
我依照python的寫法,將指令拼接起來,呼叫popen執行。
#但是運行的時候報錯了,如下:
#接著我測了下cmd的前面部分,也就是
他的結果是:
#可見結果是正確的,所以判斷問題就出現在sed這部分,還請各位前輩幫忙看看。
我想大声告诉你2017-06-28 09:25:05
你把命令直接複製到命令列能用嗎?如果能用就是你組織字串出的錯,例如雙引號被你漏了,例如python中"%F"與'"%F"'是不一樣的,還有'2'與'\2'是不一樣的
过去多啦不再A梦2017-06-28 09:25:05
不用sed/grep
...
# coding: utf8
import re
from time import strftime, strptime
from subprocess import Popen, PIPE
cmd = 'svn log' # 不需要sed
result = Popen(cmd, shell=True, stdout=PIPE, stderr=PIPE)
stdout, stderr = result.communicate()
for _ in re.findall(r'(?<=date>)([^<.]+)\.', stdout):
print(strftime("%F %T", strptime(_, "%Y-%m-%dT%H:%M:%S")))