リダイレクト(>&)とパイプ(|)を使用してJavaからいくつかのLinuxコマンドを実行しようとしています。Javaはどのように起動csh
またはbash
コマンドできますか?
私はこれを使ってみました:
Process p = Runtime.getRuntime().exec("shell command");
ただし、リダイレクトやパイプとは互換性がありません。
リダイレクト(>&)とパイプ(|)を使用してJavaからいくつかのLinuxコマンドを実行しようとしています。Javaはどのように起動csh
またはbash
コマンドできますか?
私はこれを使ってみました:
Process p = Runtime.getRuntime().exec("shell command");
ただし、リダイレクトやパイプとは互換性がありません。
回答:
execはシェルでコマンドを実行しません
試す
Process p = Runtime.getRuntime().exec(new String[]{"csh","-c","cat /home/narek/pk.txt"});
代わりに。
編集::私のシステムにはcshがないため、代わりにbashを使用しました。以下は私のために働きました
Process p = Runtime.getRuntime().exec(new String[]{"bash","-c","ls /home/XXX"});
ProcessBuilderを使用して、スペースではなくコマンドと引数を区切ります。これは、使用するシェルに関係なく機能するはずです。
import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
public class Test {
public static void main(final String[] args) throws IOException, InterruptedException {
//Build command
List<String> commands = new ArrayList<String>();
commands.add("/bin/cat");
//Add arguments
commands.add("/home/narek/pk.txt");
System.out.println(commands);
//Run macro on target
ProcessBuilder pb = new ProcessBuilder(commands);
pb.directory(new File("/home/narek"));
pb.redirectErrorStream(true);
Process process = pb.start();
//Read output
StringBuilder out = new StringBuilder();
BufferedReader br = new BufferedReader(new InputStreamReader(process.getInputStream()));
String line = null, previous = null;
while ((line = br.readLine()) != null)
if (!line.equals(previous)) {
previous = line;
out.append(line).append('\n');
System.out.println(line);
}
//Check result
if (process.waitFor() == 0) {
System.out.println("Success!");
System.exit(0);
}
//Abnormal termination: Log command parameters and output and throw ExecutionException
System.err.println(commands);
System.err.println(out.toString());
System.exit(1);
}
}
自己完結型メソッドを作成するための@Timの例に基づいて構築します。
import java.io.BufferedReader;
import java.io.File;
import java.io.InputStreamReader;
import java.util.ArrayList;
public class Shell {
/** Returns null if it failed for some reason.
*/
public static ArrayList<String> command(final String cmdline,
final String directory) {
try {
Process process =
new ProcessBuilder(new String[] {"bash", "-c", cmdline})
.redirectErrorStream(true)
.directory(new File(directory))
.start();
ArrayList<String> output = new ArrayList<String>();
BufferedReader br = new BufferedReader(
new InputStreamReader(process.getInputStream()));
String line = null;
while ( (line = br.readLine()) != null )
output.add(line);
//There should really be a timeout here.
if (0 != process.waitFor())
return null;
return output;
} catch (Exception e) {
//Warning: doing this is no good in high quality applications.
//Instead, present appropriate error messages to the user.
//But it's perfectly fine for prototyping.
return null;
}
}
public static void main(String[] args) {
test("which bash");
test("find . -type f -printf '%T@\\\\t%p\\\\n' "
+ "| sort -n | cut -f 2- | "
+ "sed -e 's/ /\\\\\\\\ /g' | xargs ls -halt");
}
static void test(String cmdline) {
ArrayList<String> output = command(cmdline, ".");
if (null == output)
System.out.println("\n\n\t\tCOMMAND FAILED: " + cmdline);
else
for (String line : output)
System.out.println(line);
}
}
(テスト例は、ディレクトリとそのサブディレクトリ内のすべてのファイルを時系列で再帰的に一覧表示するコマンドです。)
ちなみに、なぜ2つや4つではなく4つや8つのバックスラッシュが必要なのかを誰かが教えてくれれば、何かを学ぶことができます。私が数えているよりも、エスケープ解除の発生のレベルが1つあります。
編集:Linuxで同じコードを試したところ、テストコマンドに必要なバックスラッシュの数が半分になることがわかりました。(つまり、予想される数は2と4です。)変なだけではなく、移植性の問題です。
cat
csh
お互いに何の関係もありません。