I'm calling command line programs connected by pipes. All this works on Linux for sure.
My method:
protected String execCommand(String command) throws IOException {
String line = null;
if (command.length() > 0) {
Process child = Runtime.getRuntime().exec(command);
InputStream lsOut = child.getInputStream();
InputStreamReader r = new InputStreamReader(lsOut);
BufferedReader in = new BufferedReader(r);
String readline = null;
while ((readline = in.readLine()) != null) {
line = line + readline;
}
}
return line;
}
If I'm calling some cat file | grep asd, I'm getting the expected result. But not all commands works correctly. For example with this:
cat /proc/cpuinfo | wc -l
or this:
cat /proc/cpuinfo | grep "model name" | head -n 1 | awk -F":" '{print substr($2, 2, length($2))}
the method will return null. I'm guessing this problem depends on output formatting commands like head, tail, wc, etc. How I can work around this problem and get the final result of the output?
Probably a little too late but for others looking for a solution, try this...
All the best..
Everyone who uses Runtime.exec should read this.
It might be a good idea to check the error stream of the Process as well.
The quick-and-dirty thing to do would be:
Normally, you'll have to watch out for shell injection (i.e. someone sneaks
"; rm -rf /;"
into the command). But that's only an issue if part of the command can be supplied from some other user input.The slow and painful approach would be to do the Bash piping yourself in Java. If you go down this road, you'll find out all the wonderful things that Bash gives you that's not directly available from
Process.exec
(pipes, redirection, compound commands, variable expansion, arithmetic evaluation, ...).|
characters. Be sure to watch out for||
and quoted strings.Process
for every piped command.Thread
s that read the output from one command and write it to the input of the next command.The pipe (like redirection, or
>
) is a function of the shell, and so execing directly from Java won't work. You need to do something like:which executes a shell process with the command line (including pipes) specified after the
-c
(in quotes).Note also that you have to consume
stdout
andstderr
concurrently, otherwise your spawned process will block waiting for your process to consume the output (or errors). More info here.Still didn't found proper solution to execute piped commands with Runtime.exec, but found a workaround. I've simply wrote these scripts to separate bash files. Then Runtime.exec calls these bash scripts and gets expected result.