My script is located in the Download folder of the device and it's path is /storage/emulated/0/Download/
My shell script contains: testSharath.sh
#!/bin/sh
#!/system/bib/sh
echo "Hello from testSharath.sh"
ps -e
I tried to execute above shell script in my android code:
private void testShellScript() {
File testPath = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS);
String fileName = "testSharath.sh";
File scriptFilePath = new File(testPath, fileName);
try {
Process process = Runtime.getRuntime().exec("/opt/homebrew/bin/adb shell chmod +x " +scriptFilePath);
// Get the output stream of the process
BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream()));
String line;
// Read and print each line of the output
while ((line = reader.readLine()) != null) {
System.out.println("Sharath@@@@@@"+line);
}
// Close the reader
reader.close();
} catch (IOException e) {
e.printStackTrace();
}
}
Exception:
java.io.IOException: Cannot run program "/opt/homebrew/bin/adb": error=2, No such file or directory
My path is correct
Try this way