Domanda

What is the equivalent perl and python code for unix command mdb hostname This command gives all the details of the host(machine name)?

One way is to run this unix command embedded with perl/python script and get the details, but is there any existing module that provides this functionality?

È stato utile?

Soluzione

You can always call the mdb command in Python like this:

import subprocess

mdbOutput = subprocess.check_output([ 'mdb', 'hostname' ])

Then you have the output of mdb in the variable mdbOutput and can parse it yourself. But since I have no idea what it looks like (you should post that), I have no clue how to go on now.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top