From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from relay2.UU.NET ([137.39.1.7]) by archone.tamu.edu with SMTP id <45329>; Mon, 10 Feb 1992 20:31:05 -0600 Received: from uunet.uu.net (via LOCALHOST.UU.NET) by relay2.UU.NET with SMTP (5.61/UUNET-internet-primary) id AA19015; Mon, 10 Feb 92 21:31:05 -0500 Received: from srg.UUCP by uunet.uu.net with UUCP/RMAIL (queueing-rmail) id 212958.9949; Mon, 10 Feb 1992 21:29:58 EST Received: from ceres.srg.af.mil by srg.srg.af.mil id aa04543; Mon, 10 Feb 92 20:53:19 EST From: culliton@srg.af.mil (Tom Culliton x2278) X-Mailer: SCO System V Mail (version 3.2) To: rc@archone.tamu.edu Subject: Just how brain dead is SCO Unix? Date: Mon, 10 Feb 1992 19:53:26 -0600 Message-Id: <9202102053.aa29139@ceres.srg.af.mil> While running some test programs through rc to beat it up some I began to wonder what was taking so long. A couple of peeks with ps were enough to make me feel quite ill. In SCO Unix /bin/test is a Bourne shell script that does essentially this: `basename $0` "$@" 8-P Blech! You can at least avoid running basename by using: fn test { /bin/sh -c test $* } But basically the choice is the test built into your shell (or Bourne shell) or nothing! Any better suggestions are welcome. Tom