I know running javac file1.java produces file1.class if file1.java is the only source file, then I can just say java file1
javac file1.java
file1.class
file1.java
java file1
OR you could just use javac file1.java and then also use javac file2.java afterwards.
javac file2.java