find $HOME -name myfile -print
find $HOME -name core -exec rm {};
To remove the job, I can log in through another window, or system and issue the ps command (on SGIs issue ps -e; on Suns issue ps -asx). Look for the name of your running job in the last column of the output. Once you find it, look at its PID (process I.D.) number.
To remove it from the system, issue
kill -9 PIDwhere PID is the process I.D. of that job.