[问题] 使用subprocess的一些问题

楼主: schemer (珍惜每分每秒)   2016-06-19 15:38:08
想请问板上的大大,小弟在写python的小工具出现的问题
首先,我有一个.py档,内容主要是针对file system的操作或是
呼叫system command
一开始,我把全部的逻辑写在一个.py档里,遇到要call system
command的时候,就使用subprocess.Popen, 到目前为止,并无
太多问题
后来,因为功能的扩增,我把一些东西拆出去变成class或是
一些common utils, 问题就出现了
EX. main.py内容如下
from common import run_command
if __init__ == '__main__':
run_command('sudo', 'ls', '-al')
common.py
def run_command(cmd):
subprocess.Popen(cmd)
则会出现无法执行状况
后来,在另一个功能上,我把run_command包在class里,就可以跑
Ex : main.py
from feature import a
if __init__ == '__main__':
obj_a = a()
a.run_command('sudo', 'ls', '-al')
feature.py
class a(object):
def __init__(self):
do_something
def run_command(cmd):
subprocess.popen(cmd)
原本把run_command这个很常用的method拉出去之后,就不能跑了
可是,在包成class之后,用起来就跟放在main.py里一样,没什
么问题
想请问大大们,为什么会这样?
谢谢
作者: alibuda174 (阿哩不达)   2016-06-19 15:40:00
什么不能跑? 错误讯息?应该是if __name__ == '__main__':吧
作者: kenduest (小州)   2016-06-19 20:53:00
程式码内应该是 subprocess.Popen,Popen 你打成小写另外 subprocess.Popen 你要执行命令有带入参数要使用 list, subprocess.Popen(['sudo','ls','-a'])另外你的 run_command 写法也无法正常处理run_command('sudo', 'ls', '-al') 这种语法真的要呼叫要用 run_command(['sudo', 'ls', '-al'])
楼主: schemer (珍惜每分每秒)   2016-06-20 22:49:00
感谢两位大大的回答,我明天把详细的code贴上来好了

Links booklink

Contact Us: admin [ a t ] ucptt.com