私はこれをやろうとしています
echo "ls|head -3"|/bin/sh
Javaで。
重要な点は、スクリプト文字列をオンザフライで作成し、そのスクリプトを使用してシェル プロセスを実行し、スクリプトの stdout をキャッチすることです。
上記のコードは機能せず、おそらく入力ストリームでハングします。
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);
}