> 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" as long as "whatever" is not a pipe.