Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!seismo!rutgers!sri-spam!sri-unix!hplabs!hpcea!hpfcdc!hpfcla!ajs From: ajs@hpfcla.HP.COM (Alan Silverstein) Newsgroups: net.unix-wizards Subject: Re: Cron questions Message-ID: <1120001@hpfcla.HP.COM> Date: Sat, 4-Oct-86 15:31:12 EDT Article-I.D.: hpfcla.1120001 Posted: Sat Oct 4 15:31:12 1986 Date-Received: Fri, 10-Oct-86 01:19:43 EDT References: <6300012@wvlpdp> Organization: HP Fort Collins, CO Lines: 8 > 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.