shell script launch java with arguments code example
Example: Java code to launch shell script with arguments
String cmd= "./copyFile.sh file1Name file2Name" ; // Path to Script and paramters $1 $2 used inside the script
ProcessBuilder pb = new ProcessBuilder(cmd. split(" "));
Process pr = pb.start();