Java コードからシェル スクリプトを呼び出すことができません。これが私のコードです。ここで何が欠けているのか誰か教えてください。
protected boolean shellExecute() throws InterruptedException {
try {
Process p = Runtime.getRuntime().exec("/home/baibhav/try_scripts/javacall.sh");
} catch (IOException e) {
e.printStackTrace();
return false;
}
return true;
}