在子进程Python中传递sudo权限的密码

时间:2014-08-11 17:14:06

标签: python python-2.7 python-3.x subprocess

例如,采取一个简单的程序

from subprocess import check_output
t = check_output(['ls', '-a'])
print t

现在有许多命令需要使用sudo权限运行。举个例子

from subprocess import check_output
t = check_output(['sudo', 'ls', '-a'])
print t

但它在我的终端中要求输入密码。相反,我想以编程方式输入密码,如果可能的话,甚至绕过它。

0 个答案:

没有答案