From owner-freebsd-questions Tue Oct 9 18:13:29 2001 Delivered-To: freebsd-questions@freebsd.org Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id 0BB3537B401 for ; Tue, 9 Oct 2001 18:13:23 -0700 (PDT) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id D65B4BCA1; Tue, 9 Oct 2001 18:13:22 -0700 (PDT) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id SAA23015; Tue, 9 Oct 2001 18:13:22 -0700 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id f9A1GHs00962; Tue, 9 Oct 2001 18:16:17 -0700 (PDT) (envelope-from swear@blarg.net) To: Shawn Cole Cc: Subject: Re: Can I pay someone to configure my server? References: <00ca01c150d1$a8d67b20$6d36120a@comsys.ntukpi.kiev.ua> From: swear@blarg.net (Gary W. Swearingen) Date: 09 Oct 2001 18:16:16 -0700 In-Reply-To: <00ca01c150d1$a8d67b20$6d36120a@comsys.ntukpi.kiev.ua> Message-ID: Lines: 29 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Shawn wrote: > > or where can I find out all the shell commands for FreeBSD. Entering this at a shell command prompt should list the ones that will work at the prompt without a full path name: find $(IFS=:; echo . $PATH) -type f -perm +111 -maxdepth 1 This should list most of the rest: find / -type f -perm +111 Not all will have man pages. Some are designed to be used only by other programs. Your shell command will have some more built in. See the "builtins" man page for a quick list of a few shell's commands. You may define some other commands interactively or in your ~/.profile type shell startup file which your shell man page will say how to define and list (called "aliases" and "functions"). Finally (?), one can use the "source" or "." command to cause a text file to be read for a list of commands, but there are not many of those kind of "source" files around other than the shell startup files like /etc/profile. There's plenty of UnX resources on the net. Google.com is your friend. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message