我使用 Java Runtime.exec() 运行 egrep
String command = "egrep \'(Success|Loading\\.\\.\\.|Loaded : READY|Found a running instance)\' "+ instance.getPath() + "/log";
Runtime.getRuntime().exec(command);
标准输出始终为空,标准错误显示“egrep:不匹配(或(”。但是当我将命令复制到 shell 并运行时,它返回正确的值。