From owner-freebsd-current Fri Mar 8 16:40:11 1996 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id QAA28582 for current-outgoing; Fri, 8 Mar 1996 16:40:11 -0800 (PST) Received: from precipice.shockwave.com (precipice.shockwave.com [171.69.108.33]) by freefall.freebsd.org (8.7.3/8.7.3) with ESMTP id QAA28573 for ; Fri, 8 Mar 1996 16:40:08 -0800 (PST) Received: from localhost.shockwave.com (localhost.shockwave.com [127.0.0.1]) by precipice.shockwave.com (8.7.4/8.7.3) with SMTP id QAA03842; Fri, 8 Mar 1996 16:38:53 -0800 (PST) Message-Id: <199603090038.QAA03842@precipice.shockwave.com> To: Wolfram Schneider cc: current@FreeBSD.ORG Subject: Re: _PATH_* In-reply-to: Your message of "Thu, 07 Mar 1996 23:33:38 +0100." <199603072233.XAA01854@campa.panke.de> Date: Fri, 08 Mar 1996 16:38:52 -0800 From: Paul Traina Sender: owner-current@FreeBSD.ORG X-Loop: owner-current@FreeBSD.ORG Precedence: bulk I think these make perfect sense. You could conceivably have shared versions of a /bin program in /usr/bin, which is why this was set this way in the first place. The second is for stupid compatibility, the final colon is curdir, as you already knew. I don't like it, but I don't want to break it either. From: Wolfram Schneider Subject: _PATH_* /usr/include/paths.h /* Default search path. */ #define _PATH_DEFPATH "/usr/bin:/bin" Why is /usr/bin before /bin? /* All standard utilities path. */ #define _PATH_STDPATH \ "/usr/bin:/bin:/usr/sbin:/sbin:" Same. And why the colon? Wolfram