Remove all `at` jobs
You can run this command to remove all the jobs at the atq
for i in `atq | awk '{print $1}'`;do atrm $i;done
You could do something like this:
for i in $(atq | cut -f 1); do atrm $i; done
This seems to me a short line:
atrm $(atq | cut -f1)