我有许多 python 脚本,我想背靠背传输大约 1000 次,更改每个脚本的输入文件
我以前使用 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')