How can I view the status of a background process that was created by using the "&" command? I ran a Java program using the "java program_name" command, and I just tacked on the "&" sign. The process went to the background, and the process ID number was generated. I have the process ID number, and I can see it as an active process when I use the "ps" command. However, I am not sure if the Java code needed more memory, and it threw an exception or something.
Thanks a lot in advance!