Skip to content

Instantly share code, notes, and snippets.

@samredai
Created November 7, 2019 18:50
Show Gist options
  • Save samredai/0cfef30527a1800b9dcd361e9dd0d849 to your computer and use it in GitHub Desktop.
Save samredai/0cfef30527a1800b9dcd361e9dd0d849 to your computer and use it in GitHub Desktop.
Linux: compgen tool to list all available commands
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