Do you know that "javac" is on your system? (Use find or locate, or maybe "man javac")
You need to have the pathname in your PATH variable, or you need to simply enter the full path---eg: /usr/bin/javac
To run something in the current directory: ./javac ("." means "current directory", and thus is read as a full pathname)
|