I normally have several problems with how cron executes scripts as they normally don't have my environment setup. Is there a way to invoke bash(?) in the same way cron does so I could test scripts before installing them?
|
|
Add this to your cron:
After it runs, do this:
This assumes that your cron runs sh. I believe this is the default. |
|||||||||
|
|
Cron provides only this environment by default :
If you need more you can source a script where you define your environment before the scheduling table in the crontab. |
|||||
|
|
|
Create a cron job that runs env and redirects stdout to a file. Use the file alongside "env -" to create the same environment as a cron job. |
|||||
|
|
You can run:
This will run your_command with empty environment. |
|||||||||||
|
|
Depending on the shell of the account
or
From http://matthew.mceachen.us/blog/howto-simulate-the-cron-environment-1018.html |
|||
|
|
|
Don't forget that since cron's parent is init, it runs programs without a controlling terminal. You can simulate that with a tool like this: |
|||
|
|
|
By default, The best thing to do is make sure your scripts have what they need and to assume nothing is provided for them. Therefore, you should use full directory specifications and set environment variables such as |
|||||||||
|
|
I don't believe that there is; the only way I know to test a cron job is to set it up to run a minute or two in the future and then wait. |
|||
|
|