gpt4 book ai didi

python - 在 python 的 shell 文件中使用路径作为参数

转载 作者:行者123 更新时间:2023-11-28 18:10:25 25 4
gpt4 key购买 nike

我想从 python 调用一个 shell 脚本,其中包含另一个 python 函数的运行。我想用于该子流程方法。到目前为止,我的代码如下所示:

arguments = ["./my_shell.sh", path]
ret_val = subprocess.Popen(arguments, stdout=subprocess.PIPE)

脚本如下:

#!/bin/sh

cd ...
python -c "from file import method;
method()"

我如何在 shell 文件中作为参数传递的路径的目录(到 cd)中给出?

最佳答案

您可以通过 $1$2 等方式访问您的参数。因此您的 cd 命令将只是 cd $1.

关于python - 在 python 的 shell 文件中使用路径作为参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51044007/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com