I'm currently testing an OpenMP parallel program on Intel's ManyCore Testing Lab computers, and have been using
qsub -l select=1:ncpus=30 $HOME/myjob
to add the job and run it. It puts the output from the program into a file called myjob.o123456 (where the numbers depend on the job ID), but I'd like it to output to the console while the job is running, that way I can figure out the progress my program is making. Does anybody know how to do this?