我正在尝试这样做
echo "ls|head -3"|/bin/sh
在爪哇。
重要的一点是我想即时创建脚本字符串并使用该脚本运行一个 shell 进程并捕获脚本标准输出。
上面的代码不起作用并挂起,可能在输入流上。
Process p = Runtime.getRuntime().exec("/bin/sh");
final OutputStream out = p.getOutputStream();
final BufferedReader in = new BufferedReader(new InputStreamReader(p.getInputStream()));
final String cmd = "ls|head -3";
new Thread(new Runnable() {
@Override
public void run() {
try {
out.write(cmd.getBytes());
out.flush();
} catch (IOException ex) {
}
}
}).start();
final List list = new ArrayList();
new Thread(new Runnable() {
@Override
public void run() {
try {
String line;
while ((line = in.readLine()) != null) {
list.add(line);
}
} catch (IOException ex) {
}
}
}).start();
System.err.println("running ...");
p.waitFor();
System.err.println(list);
}