2 examples for at

{{ score }}
  # send a command to at
echo "say 'time to go'" | at 16:30
        
{{ score }}
  # add new job to queue
at now +5 minutes 

# specify command and exit menu
at>echo "foobar"
at>[Ctrl]-[D] 

# see all pending commands
atq

# remove command #21 from queue
atrm 21