Skip site navigation (1)Skip section navigation (2)
Date:      09 Oct 2001 18:16:16 -0700
From:      swear@blarg.net (Gary W. Swearingen)
To:        Shawn Cole <tanned7@hotmail.com>
Cc:        <freebsd-questions@FreeBSD.ORG>
Subject:   Re: Can I pay someone to configure my server?
Message-ID:  <jgbsjgfg67.sjg@localhost.localdomain>
In-Reply-To: <00ca01c150d1$a8d67b20$6d36120a@comsys.ntukpi.kiev.ua>
References:  <00ca01c150d1$a8d67b20$6d36120a@comsys.ntukpi.kiev.ua>

next in thread | previous in thread | raw e-mail | index | archive | help
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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?jgbsjgfg67.sjg>