From a44c824f59b1f6c90c2cb9239acb4553640b4f45 Mon Sep 17 00:00:00 2001 From: ABorgna Date: Wed, 11 Sep 2013 00:21:44 -0300 Subject: [PATCH] Added at cheatsheet --- cheatsheets/at | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 cheatsheets/at diff --git a/cheatsheets/at b/cheatsheets/at new file mode 100644 index 0000000..2827a45 --- /dev/null +++ b/cheatsheets/at @@ -0,0 +1,17 @@ +# To schedule a one time task +at {time} +{command 0} +{command 1} +Ctrl-d + +# {time} can be either +now | midnight | noon | teatime (4pm) +HH:MM +now + N {minutes | hours | days | weeks} +MM/DD/YY + +# To list pending jobs +atq + +# To remove a job (use id from atq) +atrm {id}