使用python发送需要root权限的linux shell命令
程序员文章站
2022-05-10 09:39:45
...
def file_property():
try:
filename = "/etc/network/interfaces"
cmd = "chmod 777 " + filename
run = pexpect.spawn('su -c "%s" root' %cmd)
time.sleep(0.5)
run.sendline('xxx')
time.sleep(0.1)
except Exception:
print traceback.format_exc()
上一篇: springboot运行脚本
下一篇: 命令行判断当前是否以管理员方式运行