If I schedule something with 'at` like,
$ at noon
warning: commands will be executed using /bin/sh
at> echo "Will I be created?" > /tmp/at_test
at> <EOT>
job 12 at Fri Jun 30 12:00:00 2017
And if I reboot the machine before execution time, will my command be executed?
Unlike regular cron
which schedules tasks from file, does at
store this 'info' somewhere?