Created
November 7, 2019 18:50
-
-
Save samredai/0cfef30527a1800b9dcd361e9dd0d849 to your computer and use it in GitHub Desktop.
Linux: compgen tool to list all available commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
compgen -a # All available aliases | |
compgen -b # All available built-in commands | |
compgen -c # All available commands | |
compgen -k # All available keywords | |
compgen -A function # All available functions | |
compgen -A function -abck # Everything available that you can run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment