📜  让 python 运行 cli 命令 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:35.663000             🧑  作者: Mango

代码示例1
import os
sequence = (
    "git init",
      "git add ."
)

for i, x in enumerate(sequence):
  print("{}. RUNNING: [{}]".format(i, x))
  os.system(x)
  
#short explanation
"""
    1) Init sequence
    2) Loop through sequence and use `os.system()` to run commands
"""