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?

link|improve this question

36% accept rate
feedback

8 Answers

Add this to your cron:

30 08 * * * env > ~/cronenv

After it runs, do this:

env - `cat ~/cronenv` /bin/sh

This assumes that your cron runs sh. I believe this is the default.

link|improve this answer
feedback

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.

link|improve this answer
Sorry this confused me. isn't "env - script" enough? – Jorge Vargas Apr 7 '10 at 21:27
That will give you an empty environment. When you run scripts through cron, the environment isn't empty. – Jens Carlberg Apr 7 '10 at 21:56
feedback

Cron provides only this environment by default :

  • HOME user's home directory
  • LOGNAME user's login
  • PATH=/usr/bin:/usr/sbin:.
  • SHELL=/usr/bin/sh

If you need more you can source a script where you define your environment before the scheduling table in the crontab.

link|improve this answer
+1: this is exactly what I get. – jldupont Sep 14 '10 at 12:48
feedback

You can run:

env - your_command arguments

This will run your_command with empty environment.

link|improve this answer
1  
cron doesn't run in a completely empty environment, does it? – jldupont Sep 14 '10 at 12:45
gregseth identified the variables included in the environment by cron. You can include that variables on the command line. $ env - PATH="$PATH" command args – DragonFax Jan 25 at 19:49
feedback

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:

http://libslack.org/daemon/

link|improve this answer
feedback

By default, cron executes its jobs using whatever your system's idea of sh is. This could be the actual Bourne shell or dash, ash, ksh or bash (or another one) symlinked to sh (and as a result running in POSIX mode).

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 $PATH yourself.

link|improve this answer
This is exactly what I'm trying to solve. We get tons of problems with scripts that assume something by mistake. Doing full paths and setting env variables and all the junk ends up with horrible huge unmaintainable cron lines – Jorge Vargas Apr 7 '10 at 21:26
re *sh sorry I grew up with bash = shell so it's hard to me to remember the alternatives (and sometimes better) shells. – Jorge Vargas Apr 7 '10 at 21:29
1  
@Jorge: lines in the crontab should be fairly short. You should do all the setup you need within the script (or a wrapper script). Here's a typical line from a crontab as an example: 0 0 * * 1 /path/to/executable >/dev/null 2>&1 and then, within "executable" I would set values for $PATH, etc., and use full directory specs to input and output files, etc. For example: /path/to/do_something /another/path/input_file /another/path/to/output_file – Dennis Williamson Apr 7 '10 at 23:15
feedback

Depending on the shell of the account

sudo su
env -i /bin/sh

or

sudo su
env -i /bin/bash --noprofile --norc

From http://matthew.mceachen.us/blog/howto-simulate-the-cron-environment-1018.html

link|improve this answer
feedback

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.

link|improve this answer
This is why I'm asking simulate – Jorge Vargas Apr 7 '10 at 21:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.