Is there a way/command to get a listing of all the commands available on my system from the commandline prompt?
|
feedback
|
|
Usually pressing tab once or twice will display a message such as:
Pressing Y will display all commands you can run that are on your default path. | |||||||||||||||
feedback
|
|
If you want to display all commands available in your $PATH, you may use this command:
If you want to display all executable files available on your filesystem, you may use this command (beware, it might take some time):
The files listed by this command are not necessarily commands, they are just set as executable. (you might need to run it as root if you want to search, remove the 2> /dev/null part to know where the find command did not search as a normal user) You may also want to list your aliases, to do so , you can use this command:
| |||||
feedback
|
|
In bash, you can use
| |||
|
feedback
|
|
Not that I know of, but you could either | |||
|
feedback
|
|
All the products installed in your system can be executed from the command-line. However, some built-in commands are available that are specific to the shell that you use. Here are pointers to documentation about some most used shells : bash, Bourne shell (sh), C shell (csh). For some shells the built-in | |||
|
feedback
|
|
On a slightly different note: Many linux systems have
| |||
|
feedback
|