Is there a Linux command that will list all available commands and aliases for this terminal session?
As if you typed \'a\' and pressed tab, but for every letter of
It's useful to list the commands based on the keywords associated with the command.
Use: man -k "your keyword"
man -k "your keyword"
feel free to combine with:| grep "another word"
| grep "another word"
for example, to find a text editor: man -k editor | grep text
man -k editor | grep text