Showing posts with label return from Java Method. Show all posts
Showing posts with label return from Java Method. Show all posts

Thursday, May 23, 2019

Get the return value from java method by shell script

1
2
3
4
5
public class Test {
    public static void main (String args []) {
        System.out.println ("scuccess");
    }
}

So save this, compile it, run it: