我是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/