> > It is much nicer to do it like so: > > 30 * * * * /bin/su person -c "whatever" > > For efficiency, make that: > > 30 * * * * exec /bin/su person -c "exec whatever" > Really? Seems to me in the first case there is one exec (from cron), and in the second case there are two execs.