将子进程附加到列表似乎只是在python中附加子进程对象位置?

时间:2013-04-04 17:35:53

标签: python subprocess

在控制台上使用以下命令打印wlan0的NIC的本地MAC地址。我想将它集成到一个脚本中,其中列表的第0个子列表将用exer中的本地MAC填充

ifconfig wlan0 | grep -o -E '([[:xdigit:]]{1,2}:){5}[[:xdigit:]]{1,2}'

正在使用的列表,本地化,从被称为扫描的字典中获取它的第1和第2个子列表。

所以我希望第0个子列表中有本地MAC,第1和第2个子列表中的每个条目都有一个条目。我试过了代码:

for s in scanned:
    localisation[0].append(subprocess.Popen("ifconfig wlan0 | grep -o -E '([[:xdigit:]]{1,2}:){5}[[:xdigit:]]{1,2}'", shell=True))

但我得到了

<subprocess.Popen object at 0x2bf0f50>

对于列表中的每个条目。虽然有正确数量的条目。

我还有一个问题,就是出于某种原因,程序会将代码的输出打印到我不想发生的屏幕上。

我做错了什么?

3 个答案:

答案 0 :(得分:0)

popen对象在某种意义上是一个文件对象。

from subprocess import *
handle = Popen(c, stdin=PIPE, stderr=PIPE, stdout=PIPE)
handle.stdin.write('echo "Heeey there"')
print handle.stdout.read()
handle.flush()

为什么不为你重定向所有输出的原因是stderr = PIPE,否则无论如何都必须回显到控制台。将其重定向到PIPE是一个好主意。

另外,使用shell=True通常是一个坏主意,除非你知道为什么需要它..在这种情况下(我不认为)你不需要它。

Aaaand最后,您需要将要执行的命令分配到列表中,至少包含2个项目列表或更多。例如:

c = ['ssh', '-t', 'user@host', "service --status-all"]

通常是ssh -t user@root "service --status-all",注意"service --status-all"的NOT拆分部分,因为在我的示例中,这是一个整体发送到SSH客户端的参数。

不试试,试试:

c = ["ifconfig", "wlan0 | grep -o -E '([[:xdigit:]]{1,2}:){5}[[:xdigit:]]{1,2}'"]

甚至:

from uuid import getnode as get_mac
mac = get_mac()

答案 1 :(得分:0)

这是我的尝试:

use check_output给出该命令的输出。

In [3]: import subprocess

In [4]: subprocess.check_output("ip link show wlan0 | grep link | awk '{print $2}'",shell=True).strip()
Out[4]: '48:5d:60:80:e5:5f'

使用ip link show代替ifconfig保存sudo命令。

答案 2 :(得分:0)

仅调用Popen只会返回一个新的Popen实例:

In [54]: from subprocess import Popen,PIPE

In [55]: from shlex import split   #use shlex.split() to split the string into correct args

In [57]: ifconf=Popen(split("ifconfig wlan0"),stdout=PIPE)

In [59]: grep=Popen(split("grep -o -E '([[:xdigit:]]{1,2}:){5}[[:xdigit:]]{1,2}'"),
                                                   stdin=ifconf.stdout,stdout=PIPE)

In [60]: grep.communicate()[0]
Out[60]: '00:29:5e:3b:cc:8a\n'

使用communicate()来读取特定stdin个实例的stderrPopen中的数据:

In [64]: grep.communicate?
Type:       instancemethod
String Form:<bound method Popen.communicate of <subprocess.Popen object at 0x8c693ac>>
File:       /usr/lib/python2.7/subprocess.py
Definition: grep.communicate(self, input=None)
Docstring:
Interact with process: Send data to stdin.  Read data from
stdout and stderr, until end-of-file is reached.  Wait for
process to terminate.  The optional input argument should be a
string to be sent to the child process, or None, if no data
should be sent to the child.

communicate() returns a tuple (stdout, stderr).