From owner-freebsd-questions Wed Oct 4 07:02:51 1995 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA19548 for questions-outgoing; Wed, 4 Oct 1995 07:02:51 -0700 Received: from Root.COM (implode.Root.COM [198.145.90.17]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id HAA19541 for ; Wed, 4 Oct 1995 07:02:48 -0700 Received: from corbin.Root.COM (corbin [198.145.90.50]) by Root.COM (8.6.12/8.6.5) with ESMTP id HAA21052; Wed, 4 Oct 1995 07:01:17 -0700 Received: from localhost (localhost [127.0.0.1]) by corbin.Root.COM (8.6.12/8.6.5) with SMTP id HAA00133; Wed, 4 Oct 1995 07:02:46 -0700 Message-Id: <199510041402.HAA00133@corbin.Root.COM> To: splyaski@cmp.com (Plyaskin Sergey) cc: freebsd-questions@freebsd.org (' FreeBSD-questions') Subject: Re: path question In-reply-to: Your message of "Wed, 04 Oct 95 09:46:40 EDT." <1995Oct04.094359.1151.275833@smtpgate.cmp.com> From: David Greenman Reply-To: davidg@Root.COM Date: Wed, 04 Oct 1995 07:02:45 -0700 Sender: owner-questions@freebsd.org Precedence: bulk > >Hi folks, > >I am running FreeBSD 2.1 July SNAP. >As is, I have to use the absolute path in order to run my applications, for >example: >./usr/local/bin/httpd >Without that dot, it does not run even though I have /usr/local/bin in my You apparantly don't have httpd in /usr/local/bin. It appears that you instead have it in usr/local/bin (a subdirectory of your current directory, which I would guess is your login directory). A "." it *not* an absolute path, quite the opposite; "." refers to a path relative to your current directory. -DG