From owner-freebsd-bugs Mon Aug 14 11:36:45 1995 Return-Path: bugs-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id LAA12113 for bugs-outgoing; Mon, 14 Aug 1995 11:36:45 -0700 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.34]) by freefall.FreeBSD.org (8.6.11/8.6.6) with ESMTP id LAA12102 for ; Mon, 14 Aug 1995 11:36:40 -0700 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id EAA24876; Tue, 15 Aug 1995 04:32:11 +1000 Date: Tue, 15 Aug 1995 04:32:11 +1000 From: Bruce Evans Message-Id: <199508141832.EAA24876@godzilla.zeta.org.au> To: wollman@halloran-eldar.lcs.mit.edu, wosch@cs.tu-berlin.de Subject: Re: bin/683: cron(8) Cc: FreeBSD-bugs@FreeBSD.org Sender: bugs-owner@FreeBSD.org Precedence: bulk >Question for you: > Why the h*** do you care that cron runs a shell? What does > the shell do that is so horrid that you want to break cron? $ time sh -c "/bin/echo '/bin/sh is fat and slow'" /bin/sh is fat and slow 0.59 real 0.23 user 0.30 sys $ time /bin/echo '/bin/sh is fat and slow' /bin/sh is fat and slow 0.22 real 0.11 user 0.07 sys Bruce