2013-07-11 111 views

回答

0

我需要我回答這個問題之前,您使用哪個操作系統就知道了。

無論如何,如果你正在使用的Linux/Unix您可以使用此:

假設所有需要進行更新存儲在帶有絕對路徑的文件names.txt中的文件。

import os 
f = open('/root/names.txt') 
line = f.readline() 
f.close() 
words= line.split() 

for word in words: 
    cmd1 = 'svn up ' +word 
    if os.system(cmd1) == 0: 
     print('All files updated')