我有很多的Python腳本我想管背靠背約1000倍,改變了輸入文件爲每個使用Python批量運行其他的Python腳本
我以前用的是bash shell腳本這樣做,但我現在需要它在Windows機器上工作。
這裏是Python,與這行註釋掉
namecount = 0
for file in files:
in_filestring = "test_" + str(namecount)
out_filestring = "out_ + str(namecount)
namecount += 1
#Run this on the command line: python pre.py < in_filestring | filter.py | a_filter.py > out_filestring
我可以用這個位置還是有更好的方法?我問,因爲我正在閱讀子過程http://docs.python.org/2/library/subprocess.html。顯然它取代了過時的os.system,但我不明白如何使用它。
import os
os.system('system command you want to run')