欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

使用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()