Run shell script from java with Example

In this example we will learn to run bash command and invoking a shell script file from java Java is provided a feature to execute shell script from code Runtime.getRuntime().exec(“”)Above line will help us to execute bash command from java code we need to provide the shell script inside the exec method  Printing Hostname from java import java.io.BufferedReader; … Continue reading Run shell script from java with Example