Forrest logo
back to the at tool

at:tldr:a8ea2

at: Execute the commands and email the result using a local mailing program such as Sendmail.
$ at ${hh:mm} -m
try on your machine

The command "at ${hh:mm} -m" is used to schedule a command or job to run at a specific time.

Here's a breakdown of the components:

  1. "at": This is the command itself that is used to schedule tasks.

  2. "${hh:mm}": This represents the time at which you want the command or job to run. You need to replace "${hh:mm}" with the desired hour and minute in 24-hour format. For example, if you want the job to run at 10:30, you would write "10:30" in place of "${hh:mm}".

  3. "-m": This parameter is used to send an email notification to the user once the job is completed. It ensures that the user receives an email with the output/results of the command.

By using this command, you can schedule tasks or jobs to automatically run at specific times, and be notified via email when they are completed.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the at tool