All Questions
4 questions
0
votes
1
answer
283
views
Can i access the environment variables set when a script is added to linux "at" command queue?
I wanted to know if I can access the custom env variables that are set while adding a script to the "at" command queue before it runs ? I understand that certain system env variables like: TERM, ...
3
votes
2
answers
1k
views
Remove jobs from at queue on a specified date
I have a series of pending jobs in the queue,
$ atq
8 Mon Oct 29 13:21:00 2018
5 Mon Oct 29 10:36:00 2018
15 Mon Oct 29 13:31:00 2018
4 Mon Oct 29 10:35:00 2018
18 Mon Oct 29 15:55:00 2018
3 ...
1
vote
2
answers
252
views
how to properly schedule a task that schedules a task with 'at' (atd) ? or how to properly quote/escape in bash
I am looking for a way to create a command line using 'at' (atd) to schedule a task, that schedules a task to do "more stuff" after a reboot (one time task).
What I am looking for right now is a way ...
2
votes
1
answer
9k
views
How to execute recurring Bash script at specific times?
How would I set a script to execute on every Tuesday and Thursday at 11:50am?
I've been looking at the at command, but I can't conceive how to use it the way I need to from its man page.