1

我有一个需要运行 8 次的 python 脚本,包含 8 个不同.txt的文件。我正在尝试使用parallel{}PowerShell 中的 -section 来执行此操作。

workflow my_script{
  parallel {  
  python bin/script.py config/file1.txt
  python bin/script.py config/file2.txt
  python bin/script.py config/file3.txt
  python bin/script.py config/file4.txt
  python bin/script.py config/file5.txt
  python bin/script.py config/file6.txt
  python bin/script.py config/file7.txt
  python bin/script.py config/file8.txt
  } }

但是这不起作用,script.py.

我已经在正确的目录中,事实上,如果我这样做python bin/script.py config/file1.txt就可以了。

调用workflow意味着目录已更改?我不明白为什么它不在工作目录中运行。

4

0 回答 0