gpt4 book ai didi

python - 按顺序编写命令(Linux)

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

我是 Linux 新手。

我正在学习 Linux 命令。例如,我正在寻找一种从文本文件中依次编写命令行的方法。我不需要自己输入五行或更多行,而是可以调用文本文件来依次编写命令。这可能吗?这是众所周知的事情吗?如果有类似的东西,请指导我。

提前致谢。

最佳答案

您可以使用 subprocess 模块创建它。

示例:

import subprocess

subprocess.call(["ls"])
subprocess.call(["touch","helloworld.txt"])

# You can enter commands by using subprocess.call()

您使用 chmod +x filename.py 使文件可执行,并使用 ./filename.py 运行脚本

或者按照@bipll 在评论中的建议,创建一个.sh 文件。这是 tutorial if you need.

关于python - 按顺序编写命令(Linux),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47088746/

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