gpt4 book ai didi

python - 需要编写python脚本在cygwin中执行linux命令

转载 作者:太空宇宙 更新时间:2023-11-04 04:41:43 25 4
gpt4 key购买 nike

我需要编写一个 python 脚本来自动执行一些重复的 Linux 命令。 (使用 mac 的人给我的)命令主要是 mkdir 和 htk 语音识别套件命令。我需要在 cygwin 上执行这些命令。我尝试寻找有关如何执行此操作的教程,但我认为我还没有找到合适的教程。我对 python 还很陌生。

最佳答案

当我使用 python 作为 shell 替代品时,我的导入部分通常如下所示:

from os import mkdir, chdir
from shutil import move, copy, rmtree, copytree
from subprocess import call

这使我能够移动和复制文件和目录以及创建新目录和删除目录。如果您想在 shell 上调用程序而不是使用 python 函数,请使用 subprocess 模块中的 call

# To run the program foo that takes an option and two arguments
# Equivalent to "foo -d bar baz" directly in the shell
call(['foo', '-d', 'bar', 'baz'])

您可以使用 call 来处理 htk 内容。

关于python - 需要编写python脚本在cygwin中执行linux命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15695917/

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