Forrest logo
back to the at tool

at:tldr:60d81

at: Open an `at` prompt to create a new set of scheduled commands, press `Ctrl + D` to save and exit.
$ at ${hh:mm}
try on your machine

The command "at ${hh:mm}" sets a specific time for an action or event to occur. The "${hh:mm}" part represents a placeholder for a specific time and should be replaced with the desired hour and minute in a 24-hour format.

For example, if you want a command to execute at 10:30 AM, you would write "at 10:30". Similarly, if you want it to execute at 9:15 PM, you would write "at 21:15".

This command is often used in scheduling systems or to automate tasks to occur at a specific time. It provides a way to schedule an action or event at a precise moment and is commonly used in scripting or command-line interfaces.

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