List of TYPO3 console commands

By default TYPO3 ships the listed console commands, depending on which system extensions are installed.

Third party extensions can define custom console commands.

The extension helhum/typo3-console ships many commands to execute TYPO3 actions, which otherwise would only be accessible via the TYPO3 backend.

This page assumes that the code is run on a Composer based installation with default binaries location. Here you can read how to run them in general and on legacy installations: Run a command from the command line.

List all TYPO3 console commands

vendor/bin/typo3 list
List commands
Usage
vendor/bin/typo3 list [--raw] [--format FORMAT] [--short] [--] [<namespace>]
Copied!
Arguments
namespace
The namespace name
Options
--raw
To output raw command list
Value
None allowed
Default value
false
--format
The output format (txt, xml, json, or md)
Value
Required
Default value
"txt"
--short
To skip describing commands' arguments
Value
None allowed
Default value
false
Help

The list command lists all commands:

vendor/vendor/bin/typo3 list
Copied!

You can also display the commands for a specific namespace:

vendor/vendor/bin/typo3 list test
Copied!

You can also output the information in other formats by using the --format option:

vendor/vendor/bin/typo3 list --format=xml
Copied!

It's also possible to get raw list of commands (useful for embedding command runner):

vendor/vendor/bin/typo3 list --raw
Copied!