我正在尝试从 PowerShell 内部运行 Closure Compiler:
& $javaPath -jar $closurePath --js $jsCombinedPath --js_output_file $jsMinifiedPath
它将缩小的文件写入控制台$jsMinifiedPath
并在控制台中输出。如果有警告,那么它也会将它们扔到控制台中。
有没有办法阻止它写入控制台?我试过了
& $javaPath -jar $closurePath --js $jsCombinedPath --js_output_file $jsMinifiedPath | out-null
但它不起作用(我是 PowerShell 的新手,所以我不确定这是否正确)