I have made a java program composed of two files: fibonacci.java and customBigInteger.java. The customBigInteger.java is the implementation of adding big integers together without the use of BigInteger data type from the java library (a requirement for my assignment). This is used in fibonacci.java to calculate the n-th fibonacci number.
I wrote these in eclipse, but another requirement of the assignment is to write one shell script to compile and run the program, which I have never done before. How do I do that, assuming i have both .java files in the /bin/usr/Documents directory?