I have a script that creates a series of at jobs for the day.
If I run the script from the command line the at jobs are created. The at jobs run at the specified time and they do what they are supposed to do.
If I run the script the as a cron job the at are created. The at jobs appear to run at the specified time but they do not do anything.
The command that is run from at is
Code:
/home/frrobert/bin/issbeacon 3
The number at the end is a variable in minutes that says how long to run the script. The number varies for each job and is set by the initial script.
Whether I run the script from the command line or as a cronjob:
When I run atq the all the jobs show up and if I run at -c jobnumber the command shows as above with both full path and the variable.
Everything is run as user.
The initial script can be found here
https://github.com/frrobert2/AWK-scr...ssdailycronjob
So I am confused by what appears to be identical at jobs the ones that are created via cron do not run correctly.
Any ideas?
Thanks