您不能使用进行管道或重定向
String.execute()。这在Java中不起作用,因此在Groovy中也不起作用…
您可以
Process.pipeTo与Groovy一起使用以简化 *** 作:
Process proca = 'uname -a'.execute()Process procb = 'awk {print}'.execute()(proca | procb).text
更通用的版本可能是:
String process = 'uname -a | awk {print}'// Split the string into sections based on |// And pipe the results togetherProcess result = process.tokenize( '|' ).inject( null ) { p, c -> if( p ) p | c.execute() else c.execute()}// Print out the output and error streamsresult.waitForProcessOutput( System.out, System.out )
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)