惜风不起、唯有努力!
python调用shell的返回结果

python调用shell的返回结果

import os

commands = 'ls /|grep opt'
x = os.popen(commands)
fh_result = x.read()
print(fh_result)

发表回复

您的电子邮箱地址不会被公开。