In Unix, if you scheduled a job with at or batch, you can cancel it at the Unix prompt by entering:
at -r
Replace
If you don't remember the job number, you can get a listing of your jobs by entering:
at -l
Each job will be listed with its job number queue and the time it was originally scheduled to execute.
On some systems, the atq command is available to list all the jobs on the system. To use this command, at the Unix prompt, enter:
atq
If your job is already running, you will need to find the process ID and kill it. On System V implementations (including all UITS central systems at Indiana University), list all running processes by entering:
ps -fu username
Replace username with your username. The equivalent BSD command is:
ps x
Once you have the process ID, enter:
kill
Replace
kill -9
No comments:
Post a Comment