Reputation: 11
I scheduled a task (a SAS job) in Putty for next week, but this task is required to stop.
I tried killall -9 but it did not work, and the task is still existing there.
Just wonder is there any way to delete this scheduled task in Putty. thanks!
Upvotes: -2
Views: 69
Reputation: 21
first grap the PID of the job
ps -ef | grep sas
then kill it with
kill -9 PID
replace the PID with the PID you get from the first command
Upvotes: 0