我正在尝试从我的Groovy脚本执行python外部进程,但它不会产生任何输出.
因此,作为一个小的健全性测试,我尝试仅输出python版本:
def command = """ /usr/local/bin/python -V """
def proc = command.execute()
proc.waitFor()
println "This is output: " + proc?.in?.text
上面没有产生任何输出,但是,从我的命令行我可以运行/usr/local/bin / python -V
奇怪的是,如果我修改脚本以运行ident,那么它将产生输出.
def command = """ /usr/local/bin/identify --version """
def proc = command.execute()
proc.waitFor()
println "This is output: " + proc?.in?.text
是什么导致这种现象?
解决方法:
python -V命令将版本号打印为标准错误,而不是标准输出.
$python -V
Python 2.7.8
$python -V 2>/dev/null
$
因此,要获得输出,请将stderr(2)重定向到stdout(1):
def command = """ /usr/local/bin/python -V 2>&1 """
def proc = command.execute()
proc.waitFor()
println "This is output: " + proc?.in?.text
或者,您可以使用err
而不是in来获取标准错误输出:
def command = """ /usr/bin/python -V """
def proc = command.execute()
proc.waitFor()
println "This is output: " + proc?.err?.text