I have a script that i am using to move data around called from cron. I would like to have the ability to differentiate between being called from cron and being called from command line, so i can ...
I need to run some things at 22.00 on every 3rd Saturday of every month, would the following work? 00 22 15-21 * * [ `date +\%u` = 6 ] && /root/test.sh i would use 6 instead of Sat so that if someone ...