我正在java程序中从命令行执行一些命令,看来它不允许我使用“grep”?我通过删除“grep”部分测试了这个,命令运行得很好!
我的代码不起作用:
String serviceL = "someService";
Runtime rt = Runtime.getRuntime();
Process proc = rt.exec("chkconfig --list | grep " + serviceL);
有效的代码:
Runtime rt = Runtime.getRuntime();
Process proc = rt.exec("chkconfig --list");
最佳答案
原文链接:https://www.f2er.com/linux/440428.html