• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

How do you schedule a command to run later in UNIX?

  • Thread starter Thread starter pX
  • Start date Start date

pX

Golden Member
I just need to kick off a script later this evening after I have left work, I know there is probably something like this built into the shell....
anyone know?
the other alternative I considered was writing a shell script or something to simply check the time over and over again, but that seem such a waste.....
 
"man at"

frankly, like most man pages its missing a human-readable explanation, and completely short on examples... but its a start 🙂

bart
 
Don't forget about cron if this is something you need to run often on scheduled days

first, so you get the format
man crontab

then to make changes
crontab -e
 
Back
Top