Shell – Monitoring progress/liveness of background jobs

background-processjavashell

I have started a background job. Is there a way to know how it is progressing, and whether it has stopped?

My command line is like:

java weka.classifiers.trees.J48  -t data.arff  J48-data.model >&  log

Best Answer

For java processes, use jps command. This would give more information pertaining to the java environment of the java process.

Related Question