Tagged Questions
2
votes
3answers
725 views
How to schedule something run once using anacron?
Frequently within my scripts I schedule auxiliary tasks for later in the form:
at now + 8 hours <<< "rm -f workfile.$$ >> $worklog 2>&1 "
or
at 11pm + $(date +%M) minutes ...