How to delete the submitted at command

Hi

I have submitted an at command to run next week .
Now i want to remove the submitted at command .
I dont want the job to run .

Can anyone help me , with the command to remove the submitted at command .

thanks in advance ...

# Find out job id
at -l

# Double check job
at -d jobid

# Delete job
at -r jobid

THANK YOU SO MUCH ..

a little trick to remove all at jobs :

atrm $(atq | cut -f1)