“Python execute o comando shell e obtenha saída” Respostas de código

executar comando e obter saída python

# You can use following commands to run any shell command. I have used them on ubuntu.

import os
os.popen('your command here').read()

# Note: This is deprecated since python 2.6. Now you must use subprocess.Popen. Below is the example

import subprocess

p = subprocess.Popen("Your command", shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0]
print p.split("\n")
Merwanski

Python execute o comando shell e obtenha saída

import subprocess
process = subprocess.Popen(['echo', 'More output'],
                     stdout=subprocess.PIPE, 
                     stderr=subprocess.PIPE)
stdout, stderr = process.communicate()
stdout, stderr
Kaotik

Execute o comando linux usando python

import subprocess
subprocess.call("command1")
subprocess.call(["command1", "arg1", "arg2"])
Sachin

comando python run and leia saída

>>> subprocess.check_output(['ls', '-l'])
b'total 0\n-rw-r--r--  1 memyself  staff  0 Mar 14 11:04 files\n'
Bloody Baboon

Respostas semelhantes a “Python execute o comando shell e obtenha saída”

Perguntas semelhantes a “Python execute o comando shell e obtenha saída”

Procure respostas de código populares por idioma

Procurar outros idiomas de código