hi,
I want to run the command using java code
echo $PATH
I used Runtime.getRuntime().exec() for this, but it returns outputp as : $PATH.
I know I can get the value of PATH variable using System.getProperty() but I want to use particularly "echo" command.
How can I do it?