fox
II/IDEC networks ::
linux.14
::
/ Python и os.system
Login
[#]
Python и os.system
Difrex
(station13, 7) — All
2014-07-07 15:22:03
А в питоне будет правильно вот так вызвать системную команду с папами?
cmd = 'first | grep second | cut -F: -d 2' output = os.system(cmd)
[#]
Re: Python и os.system
Difrex
(station13, 7) — Difrex
2014-07-07 15:22:44
>команду с папами?
Пайпами :D
[#]
Re: Python и os.system
vit01
(mira, 1) — Difrex
2014-07-07 15:39:55
> А в питоне будет правильно вот так вызвать системную команду с папами?
import subprocess
p.subprocess.Popen("your-command | two command", shell=True, stdout=subprocess.PIPE)
output=p.stdout.read()
p.wait
или output,errcode=p.communicate()
[#]
Re: Python и os.system
vit01
(mira, 1) — vit01
2014-07-07 15:40:38
> p.wait
p.wait()
ждёт завершения