Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!watmath!clyde!cbatt!ihnp4!houxm!whuxl!whuts!paul From: paul@whuts.UUCP (HO) Newsgroups: net.unix-wizards Subject: Re: Cron questions Message-ID: <1011@whuts.UUCP> Date: Mon, 13-Oct-86 15:11:21 EDT Article-I.D.: whuts.1011 Posted: Mon Oct 13 15:11:21 1986 Date-Received: Tue, 14-Oct-86 07:24:27 EDT References: <6300012@wvlpdp> <1120001@hpfcla.HP.COM> Organization: AT&T Bell Laboratories Lines: 10 > > 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.